diff options
Diffstat (limited to 'net-scripts/conf.d/net.example')
-rw-r--r-- | net-scripts/conf.d/net.example | 30 |
1 files changed, 29 insertions, 1 deletions
diff --git a/net-scripts/conf.d/net.example b/net-scripts/conf.d/net.example index 9521449..f103905 100644 --- a/net-scripts/conf.d/net.example +++ b/net-scripts/conf.d/net.example @@ -316,6 +316,15 @@ # NOTE: Vlans are controlled by their physical interface and not per vlan # This means you do not need to create init scripts in /etc/init.d for each # vlan, you must need to create one for the physical interface. +# If you wish to control the configuration of each vlan through a seperate +# script, or wish to rename the vlan interface to something that vconfig +# cannot then you need to do this. +#vlan_start_eth0="no + +# If you do the above then you may want to depend on eth0 like so +# depend_vlan1() { +# need net.eth0 +# } #----------------------------------------------------------------------------- # Bonding @@ -352,7 +361,7 @@ #link_ppp0="/dev/ttyS0" # Most PPP links will use a serial port #link_ppp0="eth0" # PPPoE requires an ethernet interface #link_ppp0="/dev/null" # PPPoA and ISDN links should have this -#link_ppp0="pty $(your_link_command)" # PPP links over ssh, rsh, etc +#link_ppp0="pty 'your_link_command'" # PPP links over ssh, rsh, etc # # Here you should specify what pppd plugins you want to use # Available plugins are: pppoe, pppoa, capi, dhcpc, minconn, radius, @@ -426,6 +435,14 @@ # '~--' '' #) +# If the link require extra configuration - for example wireless or +# RFC 268 bridge - we need to write a depend function for the bridge so they get +# configured correctly. +# This is exactly the same as a depend() function in our init scripts +#depend_ppp0() { +# need net.nas0 +#} + #----------------------------------------------------------------------------- # ADSL # For ADSL support, emerge net-dialup/rp-pppoe @@ -533,6 +550,17 @@ #brctl_br0=( "setfd 0" "sethello 0" "stp off" ) #----------------------------------------------------------------------------- +# RFC 2684 Bridge Support +# For RFC 2684 bridge support emerge net-misc/br2684ctl + +# Interface names have to be of the form nas0, nas1, nas2, etc. +# You have to specify a VPI and VCI for the interface like so +#br2684ctl_nas0="-a 0.38" # UK VPI and VCI + +# Then you can configure the interface as normal +#config_nas0=( "192.168.0.1/24" ) + +#----------------------------------------------------------------------------- # Tunnelling # WARNING: For tunnelling it is highly recommended that you # emerge sys-apps/iproute2 |