Displaying 3 results from an estimated 3 matches for "vlan_name_typ".
Did you mean:
vlan_name_type
2011 Mar 02
4
networkinterface type proposal
...eed to pass arbitrary 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 => &q...
2015 Oct 28
0
Xen Doc Day: Guide to setting up bridging on CentOS 6 / 7
...R=bond0
SLAVE=yes
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 the...
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