Ubuntu Server 網路管理操作備忘

2021-06-21 03:10:03 字數 2001 閱讀 2515

裝完ubuntu 第一件事情就是連上網,換個源,進行更新操作,但前提條件是要配好ip和dns。

下面把自己配置的過程記錄下來,權且當作乙份備份,以便不時之需。

一、配置ip

ubuntu的網路配置資訊放在/etc/network/inte***ces中,

操作:

sudo vim /etc/network/inte***ces

如果配置動態獲取ip,則在上述檔案中加入以下內容:(注:伺服器通常不用動態ip)

auto eth0

iface eth0 inet dhcp

如果配置靜態ip,則新增如下內容:

auto eth0

iface eth0 inet static

address 192.168.1.201

netmask 255.255.255.0

gateway 192.168.1.1

要是配置生效,需要重啟網絡卡:

ifconfig eth0 down

ifconfig eth0 up

接著用ifconfig命令檢視ip是否配置成功

若還有沒有配置成功,則需重啟下網路服務

/etc/init.d/networking restart

二、配置dns伺服器

ubuntu 的dns伺服器資訊,放在/etc/resolv.conf中,

操作:

sudo vim /etc/resolv.conf

新增dns伺服器位址,如202.112.125.53,則在上述檔案中加入

search localdomain

nameserver 202.112.125.53

dns-nameservers 202.112.125.53

三、連線vpn/撥號

1、安裝pptp-linux

sudo apt-get install pptp-linux

2、用pptpsetup命令建立連線

sudo pptpsetup --create 定義vpn名稱 --server vpn伺服器位址  --username 使用者名稱 --password 密碼 --encrypt --start

--encrypt加密

--start啟動

3、連線建立好之後就可以用pon和poff這兩個命令來啟動和斷開vpn連線了

上線:pon vpn名稱      

sudo pon vpn名稱 debug dump logfd 2 nodetach  

下線:poff vpnname (全部下線poff -a)

vpn建立好之後是無法鏈結vpn

sudo gedit /etc/ppp/peers/vpn名稱

新增一行   

refuse-eap

參考:

增加以下兩行

defaultroute #新增預設路由

userpeersdns #使用伺服器端設定的dns,如果不需要句不新增

4、設定預設路由  連線完畢要新增路由才能上網

例如:sudo route add default dev ppp0

ifconfig檢視一下多了ppp0這個網路,很明顯要配一下路由,下面兩條操作將預設路由改為vpn的位址,刪除原來的預設路由

route add default gw 10.19.1.1

route delete default gw ***.***.***.yyy

或者這樣更簡便

route del default

route add default dev ppp0

這樣就能通過vpn來做事了。

Ubuntu Server 下的網路配置

七月 24th,2008 posted in 筆記 檢查網路配置 ifconfig 配置dhcp客戶端 sudo vi etc network inte ces 加入 iface eth0 inet dhcp 配置靜態ip位址 sudo vi etc network inte ces eth0配置如...

Ubuntu Server 下的網路配置

檢查網路配置 ifconfig 配置dhcp客戶端 sudo vi etc network inte ces 加入 iface eth0 inet dhcp 配置靜態ip位址 sudo vi etc network inte ces eth0配置如下 auto eth0 address 192.16...

ubuntu server14 04 網路配置

由於在裝系統的時候沒有設定網路,所以我們在系統安裝完成之後需要手動配置。伺服器所在的環境是靜態分配的ip。下面是配置日誌 1,首先執行ifconfig命令,發現網絡卡沒有啟動,只有本地環迴。2,檢視伺服器網絡卡 ifconfig a 發現有四個網絡卡分別是 em1,eth1,p1p1,p1p2 3,...