nat(network address trascation)
s-nat 為多對一 或 多對多 轉換,外部無法直接訪問內部的位址
靜態pat (port address trascation) 將協議和埠轉換到外部位址
outside local 為遠端目標的私網
outside global 為遠端目標的公網
靜態nat配置命令
router(config)#ip nat inside source static 192.168.1.5(私網/源) 222.92.37.212(公網/目)
router(config)#int e0/1 (進入介面配置)
router(config-if)#ip nat inside (將路由器接內部網路的那個介面配置成inside口)
router(config)#int e0/0
router(config-if)#ip nat outside (將路由器的出介面即接外網的口配置成outside口)
動態多對多nat配置命令router(config)#ip nat pool name 222.92.37.210 222.92.37.216 netmask 222.92.37.218//設定外部位址池和閘道器
router(config)#access-list 1 permit 192.168.1.0 0.0.0.255 //使用acl設定內部的網段
router(config)#ip nat inside source list 1 pool name //使用編號為1的位址網段
router(config)#int e0/0
router(config-if)#ip nat inside
router(config)#int e0/1
router(config-if)#ip nat outside
動態多對一nat配置命令router(config)#access-list 1 permit 192.168.1.0 0.0.0.255 //設定位址列表,編號為1 ,網段為192.168.1.0
router(config)#ip nat inside source list 1 int e0/0或者222.92.37.210(接外網的口,ip需要是外網的ip) overload //使用外網口的位址轉換到內部的list 1的位址池
router(config)#int e0/1
router(config-if)#ip nat inside
router(config)#int e0/0
router(config-if)#ip nat outside
pat轉換配置命令router(config)#ip nat inside source static(靜態) tcp(協議) 192.168.1.1(內部位址) 222.92.37.210(外部位址)21(埠號) //內部位址192.168.1.1要在外網訪問需要從外網位址的21埠訪問
router(config)#int e0/1
router(config-if)#ip nat inside
router(config)#int e0/0
router(config-if)#ip nat outside
1.ntp(網路時間協議)給予udp報文進行傳輸,,使用的埠號為udp:123
2.執行ntp的裝置即可以從其他裝置同步時間,又可以做為同步源同步給其他裝置
ntp服務配置
1.伺服器端配置
clock timezone bj +8 //配置時區,要與客戶端相同
clock set 14:50:00 22 jun 2018 //配置裝置時間
ntp master //設定為服務端
2.客戶端配置
clock timezone bj +8
ntp server 192.168.1.1
//配置ntp伺服器
網路位址轉換 NAT
nat概述 網路位址轉換 nat 通過將內部網路的私有ip位址翻譯成全球唯一的公網ip位址,使內部網路可以連線到網際網路等外部網路上,廣泛應用於各型別的網際網路接入方式和各種型別的網路中。nat的實現方式有一下三種 靜態位址轉換 將內部網路的私有ip位址轉換為公有的合法的ip位址,ip位址的對應關係...
網路位址轉換NAT
一般來說每台主機都有乙個固定的ip位址用於表示自己在internet中的身份,但乙個單位只能分配到少量的公開ip位址,同時也為了安全而不向internet公開單位內部的位址,所以企業內部的主機通常都使用私有位址,當內部主機要訪問internet時,必須進行 網路位址轉換 即把私有ip位址轉換成公開i...
網路位址轉換NAT
概述 nat是將ip資料報文報頭中的ip位址轉換為另乙個ip位址的過程,主要用於實現內部網路 私有ip位址 訪問外部網路 公有ip位址 的功能。nat有三種型別 靜態nat 動態nat 網路位址埠轉換napt nat轉換裝置 實現nat功能的網路裝置 維護著位址轉換列表,所有經過nat轉換裝置並且需...