Magellan Linux

Annotation of /trunk/magellan-initscripts/etc/conf.d/net.eth0

Parent Directory Parent Directory | Revision Log Revision Log


Revision 244 - (hide annotations) (download)
Tue Sep 20 20:29:19 2005 UTC (18 years, 8 months ago) by niro
File size: 2288 byte(s)
added basic wireless network description

1 niro 133 # /etc/conf.d/net.eth0 - example eth0 network device configuration
2 niro 244 # $Header: /home/cvsd/magellan-cvs/magellan-src/magellan-initscripts/etc/conf.d/net.eth0,v 1.5 2005-09-20 20:29:19 niro Exp $
3 niro 2
4 niro 133 # Enable this device automatically on system boot.
5     # If set to anything but ?yes? the NIC will be ignored by
6     # the network script and not be brought up.
7 niro 2 ONBOOT="yes"
8    
9 niro 133
10    
11    
12     # Static networking configuration example:
13     # This method may be used to define ethernet interfaces with
14     # statically allocated IPv4 addresses.
15    
16     # NETWORKING defines which method is used [static|dhcp].
17 niro 2 #NETWORKING="static"
18 niro 133
19     # IP is required to set the address of the interface.
20 niro 2 #IP="192.168.0.1"
21 niro 133
22     # Requiered to configure the netmask.
23 niro 2 #NETMASK="255.255.255.0"
24 niro 133
25     # Required to configure the broadcast address.
26 niro 2 #BROADCAST="192.168.0.255"
27    
28 niro 133
29    
30    
31     # Dynamic networking configuration example:
32     # This method may be used to obtain an address via DHCP.
33    
34     # Enables the dhcp networking method.
35 niro 2 NETWORKING="dhcp"
36 niro 133
37     # Which dhcp client do you want to use ?
38 niro 2 DHCP_PROG="/sbin/dhcpcd"
39 niro 133
40     # DHCP_START allows you to pass additional
41     # startup parameters to your dhcp client.
42     # Ex: Timeout after 10 seconds
43 niro 19 DHCP_START="-t 10"
44 niro 133
45     # DHCP_STOP allows you to pass additional
46     # stop parameters to your dhcp client.
47     # Ex: -k kills the dhcp-cache at system shutdown
48     # -z will not; keeps the resolv.conf etc.
49 niro 2 DHCP_STOP="-z"
50    
51 niro 133
52    
53    
54     # The GATEWAY variable should contain the default gateway IP address,
55     # if one is present. If not, then comment out the variables entirely.
56     # GATEWAY_IF defines the interface to bind the default gateway to.
57 niro 2 #GATEWAY="192.168.0.100"
58 niro 244
59    
60     #
61     # Wireless networking extensions (see man iwconfig(8) for more details)
62     #
63     # transfer rate 11M, 54M
64     #WIRELESS_BITRATE
65     # which channel shall be used [1-14] (use this or frequency)
66     #WIRELESS_CHANNEL
67     # network SSID
68     #WIRELESS_ESSID
69     # wich freqency shall be used
70     #WIRELESS_FREQUENCY
71     # wireless operation mode (managed=infrastrukte, ad-hc, master=ap)
72     #WIRELESS_MODE
73     # nickname of the wireless node
74     #WIRELESS_NICK
75     # which authentification mode shall be used (open, restricted, off)
76     #WIRELESS_AUTH_MODE
77     # Encryption key length, 64=WEP64, 128=WEP128, 256=WEP256
78     #WIRELESS_KEY_LENGTH
79     # Encryption key in hex (or use ascii key)
80     #WIRELESS_KEY
81     # Encryption key in ascii (or use hex key)
82     #WIRELESS_KEY_ASCII

Properties

Name Value
svn:executable *