A majority of connection settings can be changed from within the Network Settings section of System Settings. To access the Network Settings, go to → and then select Network Settings at the lower left of the window.
不管你使用什么连接方式,网络设置的配置通常是相同的。大部分用户可能熟悉Windows 网络并且知道像IP 地址,网关,掩码地址以及DNS 地址等术语。在Kubuntu里也是相似的,只是在Linux系统中还有网络地址和广播地址这两个常见的额外设置。但是这两个设置对于基本的家庭网络和互联网连接又不是必须的。
请从以下项目中选取关于各项设置的简介。
例 1. Kubuntu 网络接口设置
# eth0 设置为自动获取地址 (DHCP) auto eth0 iface eth0 inet dhcp # eth1 设置为固定地址 (static) auto eth1 iface eth1 inet static address 192.168.1.100 netmask 255.255.255.0 network 192.168.1.0 broadcast 192.168.0.255 gateway 192.168.1.1
IP地址是一个唯一性标识,通常被理解为计算机的地址,用于与网络和因特网上其他计算机之间的连接通话。IP地址有两个版本,IPv4是最早的,使用最广泛的版本,而IPv6 是新的版本。IPv6的发明是用来解决全世界IP地址资源枯竭问题。