Ubuntu伺服器雙網配置

2021-10-05 23:27:10 字數 2332 閱讀 1663

內網:192.168.13.181

外網:10.72.66.249

進入網路配置

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

auto eno1

iface eno1 inet dhcp

iface eno1 inet static

address 192.168.13.181

netmask 255.255.255.0

gateway 192.168.13.80

auto eno2

iface eno2 inet static

address 10.72.66.249

netmask 255.255.255.128

#gatway 10.72.66.***

注意第

二個閘道器

一定不能

配置#g

atwa

y10.72.66.xx

x\color

注意第二個網

關一定不

能配置#

gatw

ay10

.72.

66.x

xx新增dns並使其生效

sudo vim /etc/resolvconf/resolv.conf.d/base 

nameserver 10.33.112.xx

sudo resolvconf -u -- 使dns生效

重啟網絡卡

sudo /etc/init.d/networking restart

檢視當前路由

destination     gateway         genmask         flags metric ref    use iface

0.0.0.0 192.168.13.244 0.0.0.0 ug 0 0 0 eno1

10.72.66.128 0.0.0.0 255.255.255.128 u 0 0 0 eno2

192.168.13.0 0.0.0.0 255.255.255.0 u 0 0 0 eno1

-- 無eno2閘道器

−−手

動新增e

no2網

段網

關\color

−−手動新增

eno2

網段閘道器

sudo route add default gw 10.72.66.***

-- 再次檢視 以新增 10.72.66.***

destination gateway genmask flags metric ref use iface

0.0.0.0 10.72.66.*** 0.0.0.0 ug 0 0 0 eno2

0.0.0.0 192.168.13.244 0.0.0.0 ug 0 0 0 eno1

10.72.66.128 0.0.0.0 255.255.255.128 u 0 0 0 eno2

192.168.13.0 0.0.0.0 255.255.255.0 u 0 0 0 eno1

測試是否成功

-- 外網

ping 11.71.15.xx (11.71.15.xx) 56(84) bytes of data.

64 bytes from 11.71.15.xx: icmp_seq=1 ttl=250 time=1.59 ms

64 bytes from 11.71.15.xx: icmp_seq=2 ttl=250 time=1.53 ms

-- 內網

ping 192.168.13.xx

ping 192.168.13.134 (192.168.13.xx) 56(84) bytes of data.

64 bytes from 192.168.13.xx: icmp_seq=1 ttl=128 time=0.786 ms

64 bytes from 192.168.13.1xx: icmp_seq=2 ttl=128 time=0.394 ms

ubuntu伺服器配置

伺服器部署 本人用的是阿里雲 1.用xshell連線伺服器終端 2.用filezilla連線伺服器用來傳檔案 3.更換ubuntu源為阿里源 拷貝sources.list sudo cp etc apt sources.list etc apt sources1.list 刪除配置檔案 sudo r...

ubuntu配置TFTP伺服器

1 安裝相關軟體包 ubuntu tftp 服務端 tftp 客戶端 xinetd sudo apt get install tftpd tftp xinetd 2 建立配置檔案 在 etc xinetd.d 下建立乙個配置檔案tftp sudo vi tftp 在檔案中輸入以下內容 service...

ubuntu配置ftp伺服器

ubuntu 12.04系統 首先介紹一下ftp伺服器 1 檢查sftpd軟體是否安裝 ubuntu是否安裝了vsftpd伺服器 rpm qa grep vsftp 若沒有顯示資訊,則表明你的電腦沒有安裝這個伺服器,接下來要使用 sudo apt get install vsftpd vsftp的解...