1. 26 Apr, 2013 1 commit
  2. 17 Apr, 2013 3 commits
  3. 12 Apr, 2013 2 commits
  4. 05 Apr, 2013 1 commit
  5. 01 Apr, 2013 1 commit
  6. 28 Mar, 2013 10 commits
  7. 27 Mar, 2013 4 commits
    • James Chapman's avatar
      iproute2: update ip-l2tp man page · 9c064b53
      James Chapman authored
      Add documentation about the new l2spec_type parameter for "ip l2tp add
      session".
      Signed-off-by: default avatarJames Chapman <jchapman@katalix.com>
      9c064b53
    • James Chapman's avatar
      iproute2: add l2spec_type param to l2tp add session · dd10baa5
      James Chapman authored
      When unmanaged L2TP sessions are created using "ip l2tp add session",
      there is no option to allow the session's Layer2SpecificHeader type to
      be selected - the kernel's default setting is always used. For
      interopability with some vendor equipment, it might be necessary to
      use a different setting. So add a new l2spec_type parameter to the "ip
      l2tp add session" parameter list, allowing operators to set a specific
      Layer2SpecificHeader type. The kernel already exposes the setting as a
      netlink attribute so it is straightforward to add support for it in
      iproute2.
      
      This change allows unmanaged L2TP sessions to be configured between
      Linux and some Cisco equipment by specifying "l2spec_type none" in "ip
      l2tp add session" command parameters.
      Signed-off-by: default avatarJames Chapman <jchapman@katalix.com>
      dd10baa5
    • Stephen Hemminger's avatar
      ll_map: use net/if.h to get prototype · 5f218239
      Stephen Hemminger authored
      Better to get prototype from system headers
      5f218239
    • Stephen Hemminger's avatar
      ll_map: remove unused address fields · 3e26112a
      Stephen Hemminger authored
      The address was being stored but not used by current code.
      3e26112a
  8. 22 Mar, 2013 1 commit
  9. 20 Mar, 2013 1 commit
  10. 18 Mar, 2013 1 commit
  11. 16 Mar, 2013 4 commits
  12. 14 Mar, 2013 3 commits
  13. 13 Mar, 2013 1 commit
  14. 12 Mar, 2013 1 commit
  15. 11 Mar, 2013 1 commit
  16. 06 Mar, 2013 5 commits
    • Stephen Hemminger's avatar
      bridge: cleanup usage message · 8ae66094
      Stephen Hemminger authored
      Fdb usage message got too long.
      8ae66094
    • Vlad Yasevich's avatar
      bridge: Update bridge man pages to include vlan command · ab938710
      Vlad Yasevich authored
      Add the vlan command documentation to bridge man page.
      Signed-off-by: default avatarVlad Yasevich <vyasevic@redhat.com>
      ab938710
    • Vlad Yasevich's avatar
      bridge: Add vlan configuration support · 9eff0e5c
      Vlad Yasevich authored
      Recent kernel patches added support for VLAN filtering on the bridge.
      This functionality allows one to turn a basic bridge into a VLAN bridge,
      where VLANs dicatate packet forwarding and header transformation.
      
      To configure the VLANs on the bridge and its ports a new command is
      added to the 'bridge' utility.
      
         # bridge vlan add dev eth0 vid 10 pvid untagged brdev
         # bridge vlan add
         # bridge vlan delete dev eth0 vid 10
         # bridge vlan show
      
      This command supports the following flags:
         master - peform the operation on the software bridge device.  This is
      	    the default behavior.
         self  -  perform the operation on the hardware associated with the port.
                  This flag is required when the device is the bridge device and
      	    the configuration is desired on the bridge device itself (not
      	    one of the ports).
         pvid  -  Set the PVID (port vlan id) for a given port.  Any untagged
                  frames arriving on the port will be assigned to this vlan.
         untagged - Sets the egress policy of for a given vlan.  Default port
                  egress policy is tagged.  Set this flag if you wish traffic
                  associated with this VLAN to exit the port untagged.
      Signed-off-by: default avatarVlad Yasevich <vyasevic@redhat.com>
      9eff0e5c
    • Vlad Yasevich's avatar
      bridge: Add vlan support to fdb entries · fd08839c
      Vlad Yasevich authored
      Provide the ability to set and show vlans on FDB entries.
      Signed-off-by: default avatarVlad Yasevich <vyasevic@redhat.com>
      fd08839c
    • Stephen Hemminger's avatar
      Revert "generalize VXLAN forwarding tables" · c6ff4b83
      Stephen Hemminger authored
      This reverts commit 90ad5ae7.
      c6ff4b83