home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20120305.etc.tar.gz / bradford.20120305.etc.tar / etc / sysconfig / network / config < prev    next >
Text File  |  2007-02-24  |  9KB  |  250 lines

  1. ## Path:    Network/Hardware/Config
  2. ## Description:    Set some general network configuration
  3. ## Type:    string("","-","+")
  4. ## Default:    "+"
  5. ## ServiceRestart: network
  6. #
  7. # DEFAULT_BROADCAST is used when no individual BROADCAST is set. It can get one
  8. # of the following values:
  9. # ""  : don't set a broadcast address
  10. # "-" : use IPADDR with all host bits deleted
  11. # "+" : use IPADDR with all host bits set
  12. DEFAULT_BROADCAST="+"
  13.  
  14. ## Type:    yesno
  15. ## Default:    yes
  16. # sometimes we want some script to be executed after an interface has been
  17. # brought up, or before an interface is taken down. 
  18. # default dir is /etc/sysconfig/network/if-up.d for POST_UP and
  19. # /etc/sysconfig/network/if-down.d for PRE_DOWN
  20. # Note: if you use NetworkManager then down scripts will be called after the
  21. # interface is down and not before.
  22. GLOBAL_POST_UP_EXEC="yes"
  23. GLOBAL_PRE_DOWN_EXEC="yes"
  24.  
  25. ## Type:        yesno
  26. ## Default:     no
  27. # If ifup should check if an ip address is already in use, set this to yes.
  28. # Make sure that packet sockets (CONFIG_PACKET) are supported in the kernel,
  29. # since this feature uses arping, which depends on that.
  30. # Also be aware that this takes one second per interface; consider that when
  31. # setting up a lot of interfaces. 
  32. CHECK_DUPLICATE_IP="no"
  33.  
  34. ## Type:        yesno
  35. ## Default:     no
  36. # Switch on/off debug messages for all network configuration stuff. If set to no
  37. # most scripts can enable it locally with "-o debug".
  38. DEBUG="no"
  39.  
  40. ## Type:        yesno
  41. ## Default:     yes
  42. # All error and info messages from network and hardware configuration scripts go
  43. # to stderr. Most tools that call sysconfig scripts (udev, rcnetwork, scpm,
  44. # YaST) catch these messages and can log them. So some messages appear twice in
  45. # syslog. If you don't like that, then set USE_SYSLOG=no.
  46. USE_SYSLOG="yes"
  47.  
  48. ## Type:        yesno
  49. ## Default:     yes
  50. # There are some services (ppp, ippp, dhcp-client, pcmcia, hotplug) that have to
  51. # change the /etc/resolv.conf dynamically at certain times.  E.g. if ppp/ippp
  52. # establishes a connection and is supplied by the peer with a list of
  53. # nameservers. Or pcmcia needs to set the correct nameserver for the choosen
  54. # configuration scheme. If you don't like these services to change
  55. # /etc/resolv.conf at all, then set this variable to "no".
  56. # If unsure, leave it at the default (which is "yes").
  57. #
  58. MODIFY_RESOLV_CONF_DYNAMICALLY="yes"
  59.  
  60. ## Type:        yesno
  61. ## Default:     no
  62. # Like MODIFY_RESOLV_CONF_DYNAMICALLY, except it modifies /etc/named.conf.
  63. # If unsure, leave it at the default (which is "no").
  64. #
  65. MODIFY_NAMED_CONF_DYNAMICALLY="no"
  66.  
  67. ## Type:        string
  68. ## Default:     ""
  69. # If you need a special nameserver that should always be prepended to the list
  70. # of dynamically changed nameservers, you may add it here.
  71. #
  72. MODIFY_RESOLV_CONF_STATIC_DNS=""
  73.  
  74. # Handling of network connections
  75. # ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
  76. # These features are designed for the convenience of the experienced
  77. # user. If you encounter problems you don't understand then switch
  78. # them off. That is the default.
  79. # Please do not complain if you get troubles. But if you want help to
  80. # make them smarter write to <http://www.suse.de/feedback>.
  81.  
  82. ## Type:    yesno
  83. ## Default:    no
  84. #
  85. # If you are interested in the connections and nfs mounts that use a
  86. # network interface, you can set CONNECTION_SHOW_WHEN_IFSTATUS="yes".
  87. # Then you will see them with 'ifstatus <interface>' (or 'ifstatus
  88. # <config>')
  89. # This one _should_ never harm ;)
  90. #
  91. CONNECTION_SHOW_WHEN_IFSTATUS="no"
  92.  
  93. ## Type:    yesno
  94. ## Default:    no
  95. #
  96. # If an interface should be set down only if there are no active
  97. # connections, then use CONNECTION_CHECK_BEFORE_IFDOWN="yes"
  98. #
  99. CONNECTION_CHECK_BEFORE_IFDOWN="no"
  100.  
  101. ## Type:    yesno
  102. ## Default:    no
  103. #
  104. # If these connetions (without the nfs mounts) should be closed when
  105. # shutting down an interface, set CONNECTION_CLOSE_BEFORE_IFDOWN="yes".
  106. # WARNING: Be aware that this may terminate applications which need
  107. # one of these connections!
  108. #
  109. CONNECTION_CLOSE_BEFORE_IFDOWN="no"
  110.  
  111. ## Type:    yesno
  112. ## Default:    no
  113. #
  114. # If you are a mobile laptop user and like even nfs mounts to be
  115. # closed when you leave your current workplace, then set
  116. # CONNECTION_UMOUNT_NFS_BEFORE_IFDOWN="yes". This does only work
  117. # if CONNECTION_CLOSE_BEFORE_IFDOWN="yes", too.
  118. # WARNING: Be aware that this may terminate applications which use
  119. # these nfs mounts as working directory. Be very carefull if your home
  120. # is mounted via nfs!!!
  121. # WARNING: This may even lead to hanging ifdown processes if there are
  122. # processes that could not be terminated. If you are using
  123. # hotpluggable devices (pcmcia, usb, firewire), first shut them down
  124. # before unplugging!
  125. #
  126. CONNECTION_UMOUNT_NFS_BEFORE_IFDOWN="no"
  127.  
  128. ## Type:    yesno
  129. ## Default:    no
  130. #
  131. # If terminating processes that use a connection or nfs mount is not
  132. # enough, then they can be killed after an unsuccesfull termination.
  133. # If you want that set CONNECTION_SEND_KILL_SIGNAL="yes"
  134. #
  135. CONNECTION_SEND_KILL_SIGNAL="no"
  136.  
  137. ## Type:        string
  138. ## Default:     ""
  139. #
  140. # Here you may specify which interfaces have to be up and configured properly
  141. # after 'rcnetwork start'. rcconfig will return 'failed' if any of these
  142. # interfaces is not up. You may use interface names as well but better use
  143. # hardware descriptions of the devices (eth-id-<macaddress> or eth-bus-...  See
  144. # man ifup for 'hardware description'). The network start script will wait for
  145. # these interfaces, but not longer as set in WAIT_FOR_INTERFACES.
  146. # You need not to add dialup or tunnel interfaces here, only physical devices.
  147. # The interface 'lo' is always considered to be mandatory and can be omitted.
  148. #
  149. # If this variable is empty, rcnetwork tries to derive the list of mandatory
  150. # devices automatically from the list of existing configurations. Configurations
  151. # with names bus-pcmcia or bus-usb or with STARTMODE=hotplug are skipped. (try
  152. # '/etc/init.d/rc5.d/S*network start -o debug fake | grep MANDAT')
  153. MANDATORY_DEVICES=""
  154.  
  155. ## Type:    integer
  156. ## Default:    20
  157. #
  158. # Some interfaces need some time to come up or come asynchronously via hotplug.
  159. # WAIT_FOR_INTERFACES is a global wait for all mandatory interfaces in
  160. # seconds. If empty no wait occurs.
  161. #
  162. WAIT_FOR_INTERFACES="20"
  163.  
  164. ## Type:    yesno
  165. ## Default:    yes
  166. #
  167. # With this variable you can determine if the SuSEfirewall when enabled
  168. # should get started when network interfaces are started.
  169. FIREWALL="yes"
  170.  
  171. ## Type:        string
  172. ## Default:     "eth*[0-9]|tr*[0-9]|wlan[0-9]|ath[0-9]"
  173. #
  174. # Automatically add a linklocal route to the matching interfaces.
  175. # This string is used in a bash "case" statement, so it may contain
  176. # '*', '[', ']'  and '|' meta-characters.
  177. #
  178. LINKLOCAL_INTERFACES="eth*[0-9]|tr*[0-9]|wlan[0-9]|ath[0-9]"
  179.  
  180. ## Type:        string
  181. ## Default:     "-f -I"
  182. #
  183. # Set default options for ifplugd. You may also set them in an ifcfg-* file
  184. # individually. Have a look at 'man ifplug' for details. We let ifplugd set the
  185. # interface UP when starting, because there are many interfaces where link beat
  186. # cannot be detected otherwise. If you want the interface to stay down then add
  187. # the option '-a'. If you like ifplugd to beep on cable (un)plug, remove '-b'.
  188. #
  189. IFPLUGD_OPTIONS="-f -I -b"
  190.  
  191. ## Type:        yesno
  192. ## Default:     yes
  193. #
  194. # Forces all interfaces eth* ath* wlan* and ra* to be persistent via udev.
  195. # See /usr/share/doc/package/sysconfig/README.Persistent_Interface_Names for
  196. # details. 
  197. #
  198. FORCE_PERSISTENT_NAMES=yes
  199.  
  200. ## Type:        yesno
  201. ## Default:     no
  202. #
  203. # Instead of the usual network setup (now called 'NetControl') you may also use
  204. # 'NetworkManager' to control your interfaces.
  205. #
  206. # NetControl is what you were used to in SUSE Linux up to now. It has a wide
  207. # range of configurations means for setting up any number of different virtual
  208. # and real interfaces. It should be used if you:
  209. # - want a static network setup
  210. # - have many interfaces
  211. # - need VLAN, bonding, bridging, multiple IP addresses
  212. # - must restrict network control to root
  213. # It may also switch interfaces automatically, but lacks a usable GUI for normal
  214. # users.
  215. #
  216. # NetworkManager lets the user control interfaces and switches automatically if
  217. # network interfaces lose/gain physical connection. It should be used if you:
  218. # - move between networks frequently
  219. # - want a GUI for network control
  220. # Especially on mobile computers that use mainly one wired and one wireless
  221. # interface NetworkManager will please you.
  222. #
  223. # If you are used to SCPM then you might probably stay with NetControl. But at
  224. # least try NetworkManager, because it can replace SCPM in some usage scenarios.
  225. NETWORKMANAGER=no
  226.  
  227. ## Type:        yesno
  228. ## Default:     yes
  229. #
  230. # When using NetworkManager you may want to trigger special actions when an
  231. # interface comes up. NetworkManagerDispatcher is a daemon that listens to
  232. # dbus-messages that tell that an interface is up/down and triggers whatever
  233. # you like. Read more about it in the manpage to NetworkManagerDispatcher.
  234. #
  235. # This variable has no effect if NETWORKMANAGER=no
  236. #
  237. NM_DISPATCHER=yes
  238.  
  239. ## Type:    int
  240. ## Default:    0
  241. #
  242. # When using NetworkManager you may define a timeout to wait for NetworkManager
  243. # to connect.  Other network services may require the system to have a valid
  244. # network setup in order to succeed.
  245. # This variable has no effect if NETWORKMANAGER=no
  246. #
  247. NM_ONLINE_TIMEOUT="0"
  248.