1. 21 May, 2012 2 commits
    • Stephen Hemminger's avatar
      v3.4.0 · db70d91c
      Stephen Hemminger authored
      db70d91c
    • Andreas Henriksson's avatar
      iproute2: trivial fix of ip link syntax in manpage · 9fc56974
      Andreas Henriksson authored
      Reported by Ivan Vilata i Balaguer <ivan@selidor.net>
      found that the description of the `ip link add` command in the manpage
      is outdated regarding the compulsory `link DEVICE` option.
      For instance, `ip  link help` says:
          Usage: ip link add [link DEV] [ name ] NAME
           ...
      But the manpage still says:
           ip link add link DEVICE [ name ] NAME
      
      (Trying to provide a `link` option e.g. under an LXC container can frustrate
       the creation of dummy devices which don't need an actual device.)
      
      The syntax of the "ip link help" output was fixed in commit
      "iproute2: Fix usage and man page for 'ip link'" (a22e9295).
      This updates the manpage to mark "link DEVICE" as an optional
      argument there as well.
      
        http://bugs.debian.org/673171Signed-off-by: default avatarAndreas Henriksson <andreas@fatal.se>
      9fc56974
  2. 03 May, 2012 3 commits
  3. 26 Apr, 2012 1 commit
  4. 25 Apr, 2012 1 commit
  5. 12 Apr, 2012 5 commits
  6. 10 Apr, 2012 5 commits
  7. 05 Apr, 2012 2 commits
  8. 03 Apr, 2012 1 commit
    • João Valverde's avatar
      ipl2tp: allow setting session interface name · ae5555d3
      João Valverde authored
      Hi,
      
      I've attached a trivial patch for iproute2 to allow naming interfaces
      created with "ip l2tp add session".
      
      I believe patches should go through the netdev mailing list but this
      patch is so small I figured that would just add noise. Hope that's OK.
      
      Originally I thought I would need a bigger patch and was going to take a
      stab at implementing something like
      
      ip l2tp add tunnel L2TP_TUNNEL_ARGS
      ip link add name NAME  [ LINK_OPTS ] type l2tp L2TP_SESSION_ARGS
      
      (a better interface IMHO) but all the code was there already, all that I
      needed to add was option parsing.
      
      Thanks,
      
      João Valverde
      
      From fd8c3b712527d2e959aeabc6f6b71a9910e7be7e Mon Sep 17 00:00:00 2001
      From: =?UTF-8?q?Jo=C3=A3o=20Valverde?= <joao.valverde@ist.utl.pt>
      Date: Mon, 26 Mar 2012 18:30:56 +0100
      Subject: [PATCH] ipl2tp: allow setting session interface name
      ae5555d3
  9. 20 Mar, 2012 3 commits
    • Stephen Hemminger's avatar
      v3.3.0 · 4bb00cd2
      Stephen Hemminger authored
      4bb00cd2
    • Stephen Hemminger's avatar
      ip: allow set and display of link mode parameter · 82499282
      Stephen Hemminger authored
      The kernel supports a link mode attribute (which can be dormant or default).
      This attribute is used to control how the link watch engine
      handles operstate transistion.
      
      This adds a new parameter to ip link command to allow setting and
      displaying the value.
      ---
      82499282
    • Stephen Hemminger's avatar
      gre: allow 0 as a legal key value · 71816553
      Stephen Hemminger authored
      There is nothing in the standard that says 0 can't be used as a key.
      It makes sense to allow it. Also fix typo where ikey was printed for
      when printing okey.
      71816553
  10. 16 Mar, 2012 1 commit
  11. 15 Mar, 2012 4 commits
  12. 14 Mar, 2012 3 commits
  13. 10 Mar, 2012 1 commit
  14. 27 Feb, 2012 1 commit
  15. 22 Feb, 2012 2 commits
  16. 17 Feb, 2012 3 commits
  17. 15 Feb, 2012 2 commits
    • Stephen Hemminger's avatar
      dhcp-client-script: don't use /tmp · 20ed7b24
      Stephen Hemminger authored
      /tmp is a dangerous place and better to put log files in /var/log.
      Based on patch by Vasiliy Kulikov <segoon@openwall.com>
      20ed7b24
    • Stephen Hemminger's avatar
      Don't put configure files in /tmp · e557d1ac
      Stephen Hemminger authored
      Based on patch by Vasiliy Kulikov <segoon@openwall.com>
      Don't use /tmp since it is dangerous, instead put temporary files
      from configure script in build directory. This is what autoconf
      generated configure does.
      e557d1ac