|
发表于 2006-10-7 20:50:11
|
显示全部楼层
- # Interfaces to start at boot-up (in this order)
- # Declare each interface then list in INTERFACES
- # - prefix an entry in INTERFACES with a ! to disable it
- # - no hyphens in your interface names - Bash doesn't like it
- #
- # Note: to use DHCP, set your interface to be "dhcp" (eth0="dhcp")
- #
- lo="lo 127.0.0.1"
- eth0="dhcp"
- INTERFACES=(lo eth0)
复制代码 |
|