Advertisement
Guest User

/etc/rc.d/rc.inet1.conf

a guest
May 4th, 2014
369
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 3.86 KB | None | 0 0
  1. #
  2. # This file contains the configuration settings for network interfaces.
  3. # If USE_DHCP[interface] is set to "yes", this overrides any other settings.
  4. # If you don't have an interface, leave the settings null ("").
  5.  
  6. # You can configure network interfaces other than eth0,eth1... by setting
  7. # IFNAME[interface] to the interface's name. If IFNAME[interface] is unset
  8. # or empty, it is assumed you're configuring eth<interface>.
  9.  
  10. # Several other parameters are available, the end of this file contains a
  11. # comprehensive set of examples.
  12.  
  13. # =============================================================================
  14.  
  15. # Config information for eth0:
  16. IPADDR[0]=""
  17. NETMASK[0]=""
  18. USE_DHCP[0]=""
  19. DHCP_HOSTNAME[0]=""
  20.  
  21. # Config information for eth1:
  22. IPADDR[1]=""
  23. NETMASK[1]=""
  24. USE_DHCP[1]=""
  25. DHCP_HOSTNAME[1]=""
  26.  
  27. # Config information for eth2:
  28. IPADDR[2]=""
  29. NETMASK[2]=""
  30. USE_DHCP[2]=""
  31. DHCP_HOSTNAME[2]=""
  32.  
  33. # Config information for eth3:
  34. IPADDR[3]=""
  35. NETMASK[3]=""
  36. USE_DHCP[3]=""
  37. DHCP_HOSTNAME[3]=""
  38.  
  39. # Default gateway IP address:
  40. GATEWAY=""
  41.  
  42. # Change this to "yes" for debugging output to stdout.  Unfortunately,
  43. # /sbin/hotplug seems to disable stdout so you'll only see debugging output
  44. # when rc.inet1 is called directly.
  45. DEBUG_ETH_UP="no"
  46.  
  47. # Example of how to configure a bridge:
  48. # Note the added "BRNICS" variable which contains a space-separated list
  49. # of the physical network interfaces you want to add to the bridge.
  50. #IFNAME[0]="br0"
  51. #BRNICS[0]="eth0"
  52. #IPADDR[0]="192.168.0.1"
  53. #NETMASK[0]="255.255.255.0"
  54. #USE_DHCP[0]=""
  55. #DHCP_HOSTNAME[0]=""
  56.  
  57. ## Example config information for wlan0.  Uncomment the lines you need and fill
  58. ## in your info.  (You may not need all of these for your wireless network)
  59. IFNAME[4]="wlan0"
  60. IPADDR[4]=""
  61. NETMASK[4]=""
  62. USE_DHCP[4]="yes"
  63. #DHCP_HOSTNAME[4]="icculus-wireless"
  64. #DHCP_KEEPRESOLV[4]="yes"
  65. #DHCP_KEEPNTP[4]="yes"
  66. #DHCP_KEEPGW[4]="yes"
  67. #DHCP_IPADDR[4]=""
  68. #WLAN_ESSID[4]=BARRIER05
  69. #WLAN_MODE[4]=Managed
  70. ##WLAN_RATE[4]="54M auto"
  71. ##WLAN_CHANNEL[4]="auto"
  72. ##WLAN_KEY[4]="D5AD1F04ACF048EC2D0B1C80C7"
  73. ##WLAN_IWPRIV[4]="set AuthMode=WPAPSK | set EncrypType=TKIP | set WPAPSK=96389dc66eaf7e6efd5b5523ae43c7925ff4df2f8b7099495192d44a774fda16"
  74. WLAN_WPA[4]="wpa_supplicant"
  75. WLAN_WPADRIVER[4]="ndiswrapper"
  76.  
  77. ## Some examples of additional network parameters that you can use.
  78. ## Config information for wlan0:
  79. #IFNAME[4]="wlan0"              # Use a different interface name instead of
  80.                                 # the default 'eth4'
  81. #HWADDR[4]="00:01:23:45:67:89"  # Overrule the card's hardware MAC address
  82. #MTU[4]=""                      # The default MTU is 1500, but you might need
  83.                                 # 1360 when you use NAT'ed IPSec traffic.
  84. #DHCP_KEEPRESOLV[4]="yes"       # If you don't want /etc/resolv.conf overwritten
  85. #DHCP_KEEPNTP[4]="yes"          # If you don't want ntp.conf overwritten
  86. #DHCP_KEEPGW[4]="yes"           # If you don't want the DHCP server to change
  87.                                 # your default gateway
  88. #DHCP_IPADDR[4]=""              # Request a specific IP address from the DHCP
  89.                                 # server
  90. #WLAN_ESSID[4]=DARKSTAR         # Here, you can override _any_ parameter
  91.                                 # defined in rc.wireless.conf, by prepending
  92.                                 # 'WLAN_' to the parameter's name. Useful for
  93.                                 # those with multiple wireless interfaces.
  94. #WLAN_IWPRIV[4]="set AuthMode=WPAPSK | set EncrypType=TKIP | set WPAPSK=thekey"
  95.                                 # Some drivers require a private ioctl to be
  96.                                 # set through the iwpriv command. If more than
  97.                                 # one is required, you can place them in the
  98.                                 # IWPRIV parameter (separated with the pipe (|)
  99.                                 # character, see the example).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement