首先,使用命令设置ubuntu的ip地址。
1.修改配置文件blacklist.conf以禁用IPV6:
sudo vi /etc/modprobe.d/blacklist.conf
2.在文档末尾添加黑名单ipv6,然后检查修改结果:
cat /etc/modprobe.d/blacklist.conf
3.设置IP(设置网卡eth0的IP地址和子网掩码)。
sudo ifconfig eth0 192.168.2.1 netmask 255.255.255.0
4.设置网关
sudo route add default gw 192.168.2.254
5.将DNS设置为modify /etc/resolv.conf,并添加名称服务器DNS的地址1和名称服务器DNS的地址2以完成。
6.重启网络服务(如果没有,请重启ubuntu:sudo reboot):
sudo /etc/init.d/networking restart
7.检查当前IP:
ifconfig
第二,直接修改系统配置文件
The network configuration file of human nature is: /etc/network/interface.
打开后,可以设置DHCP,也可以手动设置静态ip。前面Auto eth0,这样开机就能自动挂载网卡。
1.通过DHCP配置网卡。
Edit file /etc/network/interface:
sudo vi /etc/network/interfaces
将有关eth0的行替换为以下行:
# The primary network interface - use DHCP to find our address
auto eth0
iface eth0 inet dhcp
使用以下命令使网络设置生效:
sudo /etc/init.d/networking restart
您也可以直接在命令行输入以下命令来获取地址。
sudo dhclient eth0
2.为网卡配置静态IP地址。
Edit file /etc/network/interface:
sudo vi /etc/network/interfaces
将有关eth0的行替换为以下行:
# The primary network interface
auto eth0
iface eth0 inet static
address 192.168.2.1
gateway 192.168.2.254
netmask 255.255.255.0
#network 192.168.2.0
#broadcast 192.168.2.255
把上面的ip地址等信息改成自己就行了。使用以下命令使网络设置生效:
sudo /etc/init.d/networking restart
3.设置第二个IP地址(虚拟IP地址)
Edit file /etc/network/interface:
sudo vi /etc/network/interfaces
将下面一行添加到文件中:
auto eth0:1
iface eth0:1 inet static
address x.x.x.x
netmask x.x.x.x
network x.x.x.x
broadcast x.x.x.x
gateway x.x.x.x
根据您的情况填写所有信息,如地址、网络掩码、网络、广播和网关:
使用以下命令使网络设置生效:
sudo /etc/init.d/networking restart
4.设置主机名(hostname)
使用以下命令查看当前主机的主机名:
sudo /bin/hostname
使用以下命令设置当前主机的主机名:
sudo /bin/hostname newname
当系统启动时,它将从/etc/hostname中读取主机名。
5.配置DNS
首先可以在/etc/hosts中添加一些主机名和这些主机名对应的IP地址,这是一个使用本机的简单静态查询。要访问DNS服务器进行查询,需要设置/etc/resolv.conf文件。
假设DNS服务器的IP地址是192 . 168 . 2 . 2 ,/etc/resolv . conf文件的内容应该是:
search chotim.com
nameserver 192.168.2.2
6.手动重新启动网络服务:
sudo /etc/init.d/networking restart
返回的结果如下:
* Reconfigure the network interface . [OK]