1. 12 Oct, 2015 6 commits
  2. 07 Oct, 2015 4 commits
  3. 25 Sep, 2015 5 commits
  4. 23 Sep, 2015 13 commits
  5. 21 Sep, 2015 2 commits
  6. 11 Sep, 2015 1 commit
  7. 09 Sep, 2015 1 commit
    • Mike Saal's avatar
      ss format bug · 4fcfb6bc
      Mike Saal authored
      Hi:
      
      I found a formatting bug in the 4.1.1 ss command. The following line was
      incorrectly output due to passing a negative length to printf() when
      displaying the local address. In this instance hostapd does a "bind to
      device" on cdreth0 and then does a udp "in address any" port 67 bind.
      Please note the whitespace between the '*' and ' %cdreth0:67'
      
          'udp UNCONN 0 0 ** %cdreth0:67* *:* users:(("hostapd",pid=19241,fd=5))'
      
      Attached is my patch for the bug fix, it might be prudent to add more
      guard code looking for negative length format codes.
      
      Sincerely, Mike
      4fcfb6bc
  8. 07 Sep, 2015 1 commit
  9. 31 Aug, 2015 6 commits
    • Toshiaki Makita's avatar
      iplink: Add support for IFLA_BR_VLAN_PROTOCOL attribute · 1eea5c46
      Toshiaki Makita authored
      This patch adds support for bridge vlan_protocol.
      
      Example:
      $ ip link set br0 type bridge vlan_protocol 802.1ad
      $ ip -d link show br0
      4: br0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state
      UP mode DEFAULT group default qlen 1000
          link/ether 44:37:e6:ab:cd:ef brd ff:ff:ff:ff:ff:ff promiscuity 0
          bridge forward_delay 0 hello_time 200 max_age 2000 ageing_time 30000
      stp_state 0 priority 32768 vlan_filtering 0 vlan_protocol 802.1ad
      addrgenmode eui64
      Signed-off-by: default avatarToshiaki Makita <makita.toshiaki@lab.ntt.co.jp>
      1eea5c46
    • Stephen Hemminger's avatar
      update kernel headers to 4.2-net-next · 8d62f3e2
      Stephen Hemminger authored
      8d62f3e2
    • Stephen Hemminger's avatar
      Merge branch 'master' into net-next · f1e225be
      Stephen Hemminger authored
      f1e225be
    • Stephen Hemminger's avatar
      v4.2.0 · ec4ef6ae
      Stephen Hemminger authored
      ec4ef6ae
    • Konstantin Shemyak's avatar
      add 'vti'/'vti6' tunnel modes to ip-tunnel manual page · 6eca32ec
      Konstantin Shemyak authored
      * "vti" and "vti6" tunnel modes added to ip-tunnel.8 manual page
      * Added "hoplimit" terminology for IPv6
      * Corrected usage line
      * Minor language fix
      6eca32ec
    • Andy Gospodarek's avatar
      add support for brief output for link and addresses · 5d295bb8
      Andy Gospodarek authored
      This adds support for slightly less output than is normally provided by
      'ip link show' and 'ip addr show'.  This is a bit better when you have a
      host with lots of interfaces.  Sample output:
      
      $ ip -br link show
      lo               UNKNOWN        00:00:00:00:00:00 <LOOPBACK,UP,LOWER_UP>
      p2p1             UP             08:00:27:ee:0b:3b <BROADCAST,MULTICAST,UP,LOWER_UP>
      p7p1             UP             08:00:27:9d:62:9f <BROADCAST,MULTICAST,UP,LOWER_UP>
      p8p1             DOWN           08:00:27:dc:d8:ca <NO-CARRIER,BROADCAST,MULTICAST,UP>
      p9p1             UP             08:00:27:76:d9:75 <BROADCAST,MULTICAST,UP,LOWER_UP>
      p7p1.100@p7p1    UP             08:00:27:9d:62:9f <BROADCAST,MULTICAST,UP,LOWER_UP>
      
      $ ip -br -4 addr show
      lo               UNKNOWN        127.0.0.1/8
      p2p1             UP             192.168.56.2/24
      p7p1             UP             70.0.0.1/24
      p8p1             DOWN           80.0.0.1/24
      p9p1             UP             10.0.5.15/24
      p7p1.100@p7p1    UP             200.0.0.1/24
      
      $ ip -br -6 addr show
      lo               UNKNOWN        ::1/128
      p2p1             UP             fe80::a00:27ff:feee:b3b/64
      p7p1             UP             7000::1/8 fe80::a00:27ff:fe9d:629f/64
      p8p1             DOWN           8000::1/8
      p9p1             UP             fe80::a00:27ff:fe76:d975/64
      p7p1.100@p7p1    UP             fe80::a00:27ff:fe9d:629f/64
      
      $ ip -br addr show p7p1
      p7p1             UP             70.0.0.1/24 7000::1/8 fe80::a00:27ff:fe9d:629f/64
      
      v2: Now with color support!
      v3: Better field width estimation (except netdev names to keep output at a
      decent width) and whitespace fixup.
      Signed-off-by: default avatarAndy Gospodarek <gospo@cumulusnetworks.com>
      5d295bb8
  10. 25 Aug, 2015 1 commit