connman: fix comments in configfiles, thanks to ilya

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2010-11-12 10:50:56 +01:00
parent 95a30bd978
commit 768d974aaf
2 changed files with 47 additions and 22 deletions

View File

@ -1,4 +1,7 @@
# Here you can add additional hosts for usage with hosts.conf from system # hosts.conf
#
# This configuration file allows you to manually map hostnames to
# IP addresses
# Format: <ipaddress> <hostname1> <hostname2> # Format: <ipaddress> <hostname1> <hostname2>
# Example: 192.168.0.3 mynas mynas.mynetwork storage # Example: 192.168.0.3 openelec openelec.mynetwork

View File

@ -1,40 +1,62 @@
# Network configuration # network.conf
#
# This configuration file allows you to customize your network
# configuration
# Hostname to use, this also affects Samba, Avahi and some others # Hostname
# ypu can leave blank to use "openelec" as hostname (default) # Sets the machine's hostname - This setting also also affects Samba,
# Avahi and some other services
# This option left blank sets the hostname to the default setting, "openelec"
HOSTNAME="" HOSTNAME=""
# Network technology ( LAN / WLAN ) # Network Technology ( LAN / WLAN )
# "LAN" or leave blank to use Wired LAN Connection (default) # This option lets you switch between a LAN and WLAN connection
# Left blank or set to "LAN" sets the machine to use a wired network connection
# "WLAN" sets the machine to use a wireless connection
NETWORK="" NETWORK=""
# Network interface name or address (e.g. "eth0", "wlan0" or "00:0d:56:ec:ba:0c") # Network interface name or address
# you can leave blank to use eth0 (default) # This option lets you specificy a network device's name or address
# e.g. "eth0", "wlan0" or "00:0d:56:ec:ba:0c"
# Leaving this option blank uses the default setting "eth0"
IFACE="" IFACE=""
# Static IP address in CIDR format (e.g. "192.168.1.1/24") # Static IP address
# leave blank to use DHCP server (default) # This option lets you set a static IP address in CIDR format
# e.g. "192.168.1.1/24"
# Leave blank to use DHCP (default)
IPADDRESS="" IPADDRESS=""
# Network gateway (e.g. "192.168.1.254") # Network gateway
# you must setup if you use an static IP address # This option lets you set your gateway address
# e.g. "192.168.1.254"
# This variable must be set if you are using a static IP address
GATEWAY="" GATEWAY=""
# List of DNS servers (e.g. "192.168.1.253;192.168.1.254") # DNS servers
# you must setup if you use an static IP address # This option lets you set up DNS for your network
# e.g. "192.168.1.253;192.168.1.254"
# This variable must be set if you are using a static IP address
NAMESERVER="" NAMESERVER=""
# WLAN SSID (e.g. "MyNetwork") # WLAN SSID
# needed for Wireless network configuration # This option lets you set the SSID for your wireless network
# e.g. "MyNetwork"
# This variable must be set if you are using a wireless device
SSID="" SSID=""
# WLAN Security method ( NONE / WEP / PSK ) # WLAN Security
# "NONE" or leave blank on an open WLAN (default) # This option lets you chose the security protocol for your wireless
# network
# Options are "NONE" / "WEP" / "PSK" )
# "NONE" or left blank for an open WLAN (default)
# "WEP" for WEP protected WLAN's # "WEP" for WEP protected WLAN's
# "PSK" for WPA protected WLAN's # "PSK" for WPA protected WLAN's
SECURITY="" SECURITY=""
# Passphrase to access your Wireless network (e.g. "TopSecret") # WLAN Passphrase
# needed for secure Wireless network configuration (WEP and WPA) # This option lets you set the password for your wireless network
# e.g. "TopSecret"
# This variable must be set if you are using a secure wireless network
PASSPHRASE="" PASSPHRASE=""