search for: vlan_plus_vid_no_pad

Displaying 5 results from an estimated 5 matches for "vlan_plus_vid_no_pad".

2011 Mar 02
4
networkinterface type proposal
...itrary provider-specific args # i.e. the RH sysvinit provider would turn " " to \n and # drop these into the network-scripts file. # This particular option enables ''/dev/vlan201'' instead of ''/dev/eth0.201'' extra_opts => "VLAN_NAME_TYPE=VLAN_PLUS_VID_NO_PAD PEERDNS=NO PEERNTP=NO" } ### bonding example - master interface with two slaves networkinterface { "bond0": ensure => "enabled", ipaddress => "10.0.0.4", netmask => "255.255.255.0", gateway => "10.0.0.1",...
2003 Jan 26
7
Bug in shorewall
I just added 802.1Q VLAN support to redhat initscripts. And after support was ready, I tried to restart shorewall. Well it blew into pieces. Seems like shorewall can''t handle device names like: eth0.3 very properly. That''s default naming of vlan devices. eth1 is master device and 3 is id of my test vlan. So when I added to interfaces line: home eth0.3 detect seems like
2015 Oct 28
0
Xen Doc Day: Guide to setting up bridging on CentOS 6 / 7
...es host network-scripts # cat ifcfg-bond0 DEVICE=bond0 ONBOOT=yes USEERCTL=no BOOTPROTO=none IPV6INIT=no BONDING_OPTS="miimon=100 mode=802.3ad" host network-scripts # cat ifcfg-vlan### DEVICE=vlan### ONBOOT=yes USEERCTL=no BOOTPROTO=none IPV6INIT=no PHYSDEV=bond0 VLAN=yes VLAN_NAME_TYPE=VLAN_PLUS_VID_NO_PAD IPADDR=10.x.x.x NETMASK=255.255.255.0 GATEWAY=10.x.x.x DOMAIN="example.com" DNS1=x.x.x.x DNS2=x.x.x.x DNS3=x.x.x.x I use my own bridging control scripts, but this should extend your existing doc nicely just by using BRIDGE=xenbr0 in the ifcfg-vlan### file. Also there's a small error...
2015 Oct 28
2
Xen Doc Day: Guide to setting up bridging on CentOS 6 / 7
In honor of Xen Doc Day, I've put up some basic HOWTOs for setting up bridging on CentOS 6 and 7. I'm far from an expert, so I'd appreciate any feedback. The howtos can be found here: https://wiki.centos.org/HowTos/Xen/Xen4QuickStart/Xen4Networking6 https://wiki.centos.org/HowTos/Xen/Xen4QuickStart/Xen4Networking7 -George
2007 Apr 18
1
[Bridge] Linux Bridge + STP + VLAN
..._IF_DMZ $BR_IF_DMZ_COST" for file in $BR_NAME $BR_IF_DMZ $BR_IF_MZ; do echo "1" > /proc/sys/net/ipv4/conf/${file}/proxy_arp; echo "1" > /proc/sys/net/ipv4/conf/${file}/forwarding; done; # Setup VLAN Interfaces # Use vlan<id> name type $VCONFIG set_name_type VLAN_PLUS_VID_NO_PAD while read conf ; do case "$conf" in \#*|"") ;; # Ignore empty lines and comments *) pattern=[[:space:]]*\#* vlan="${conf%%$pattern}" # Remove Whitespaces and comments # Add VLAN to internal interfa...