Ubuntu IP系統(tǒng)配置文件使用命令設(shè)置地址
Ubuntu IP對(duì)于電腦使用的玩家的常用軟件,然后我就學(xué)習(xí)及深入的研究Ubuntu IP,在這里和大家一起探討Ubuntu IP的使用方法,希望對(duì)大家有用。Ubuntu IP地址配置.
一、使用命令設(shè)置Ubuntu IP地址
1.修改配置文件blacklist.conf禁用IPV6:sudo vi /etc/modprobe.d/blacklist.conf
2.在文檔最后添加 blacklist ipv6,然后查看修改結(jié)果:cat /etc/modprobe.d/blacklist.conf
3.設(shè)置Ubuntu IP(設(shè)置網(wǎng)卡eth0的IP地址和子網(wǎng)掩碼)sudo ifconfig eth0 192.168.2.1 netmask 255.255.255.0
4.Ubuntu IP設(shè)置網(wǎng)關(guān)sudo route add default gw 192.168.2.254
5.Ubuntu IP設(shè)置DNS 修改/etc/resolv.conf,在其中加入nameserver DNS的地址1 和 nameserver DNS的地址2 完成。
6.重啟網(wǎng)絡(luò)服務(wù)(若不行,請(qǐng)重啟ubuntu:sudo reboot):sudo /etc/init.d/networking restart
7.查看當(dāng)前Ubuntu IP:ifconfig
二、直接修改Ubuntu IP系統(tǒng)配置文件
Ubuntu IP的網(wǎng)絡(luò)配置文件是:/etc/network/interfaces打開后里面可設(shè)置DHCP或手動(dòng)設(shè)置靜態(tài)ip。前面auto eth0,讓網(wǎng)卡開機(jī)自動(dòng)掛載。
1. 以DHCP方式配置網(wǎng)卡
- 編輯文件/etc/network/interfaces:
- sudo vi /etc/network/interfaces
并用下面的行來替換有關(guān)eth0的行:
- # The primary network interface - use DHCP to find our address
- auto eth0
- iface eth0 inet dhcp
用下面的命令使網(wǎng)絡(luò)設(shè)置生效:
- sudo /etc/init.d/networking restart
也可以在命令行下直接輸入下面的命令來獲取地址sudo dhclient eth0
2. 為網(wǎng)卡配置靜態(tài)Ubuntu IP地址
- 編輯文件/etc/network/interfaces:
- sudo vi /etc/network/interfaces
并用下面的行來替換有關(guān)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
將上面的Ubuntu IP地址等信息換成你自己就可以了.用下面的命令使網(wǎng)絡(luò)設(shè)置生效:
- sudo /etc/init.d/networking restart
3. 設(shè)定第二個(gè)Ubuntu IP地址(虛擬IP地址)
- 編輯文件/etc/network/interfaces:
- 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
根據(jù)你的情況填上所有諸如address,netmask,network,broadcast和gateways等信息:用下面的命令使網(wǎng)絡(luò)設(shè)置生效:sudo /etc/init.d/networking restart
4. 設(shè)置主機(jī)名稱(hostname)
使用下面的命令來查看當(dāng)前主機(jī)的主機(jī)名稱:sudo /bin/hostname
使用下面的命令來設(shè)置當(dāng)前主機(jī)的主機(jī)名稱:sudo /bin/hostname newname
系統(tǒng)啟動(dòng)時(shí),它會(huì)從/etc/hostname來讀取主機(jī)的名稱。
5. 配置DNS
首先,你可以在/etc/hosts中加入一些主機(jī)名稱和這些主機(jī)名稱對(duì)應(yīng)的IP地址,這是簡單使用本機(jī)的靜態(tài)查詢。要訪問DNS 服務(wù)器來進(jìn)行查詢,需要設(shè)置/etc/resolv.conf文件,假設(shè)DNS服務(wù)器的IP地址是192.168.2.2, 那么/etc/resolv.conf文件的內(nèi)容應(yīng)為:
search chotim.com
nameserver 192.168.2.2
6.手動(dòng)重啟網(wǎng)絡(luò)服務(wù):sudo /etc/init.d/networking restart
返回結(jié)果如下:
*Reconfiguring network interfaces… [OK]
關(guān)鍵詞:Ubuntu
閱讀本文后您有什么感想? 已有 人給出評(píng)價(jià)!
- 0
- 0
- 0
- 0
- 0
- 0