溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

NAT的extendable參數(shù),使得一個(gè)地址被不同接口NAT出去測(cè)試

發(fā)布時(shí)間:2020-07-07 18:46:04 來(lái)源:網(wǎng)絡(luò) 閱讀:2404 作者:碧云天 欄目:安全技術(shù)

一.測(cè)試拓?fù)洌?/span>

NAT的extendable參數(shù),使得一個(gè)地址被不同接口NAT出去測(cè)試

二.基本思路和筆試題目:

A.基本思路:

   通過(guò)使用NAT extendable參數(shù),使得內(nèi)部一個(gè)地址能在不同接口以不同地址NAT出去,否則內(nèi)部一個(gè)地址只能配靜態(tài)NAT一次。

B.筆試題目:

An internal DNS server requires a NAT on a Cisco IOS router that is dual-homed to separate ISPs using distinct CIDR blocks. Which NAT capability is required to allow hosts in each CIDR block to contact the DNS server via one translated address?

答案:NAT extendable

三.基本配置:

A.R1路由器:

interface Ethernet0/0
ip address 202.100.1.2 255.255.255.0

no shut

B.R2路由器:

interface Ethernet0/0
ip address 61.1.1.2 255.255.255.0

no shut

C.R3路由器:

interface Ethernet0/0
ip address 10.1.1.1 255.255.255.0
ip nat inside
no shut
interface Ethernet0/1
ip address 202.100.1.1 255.255.255.0
ip nat outside
no shut
interface Ethernet0/2
ip address 61.128.1.1 255.255.255.0
ip nat outside
no shut

D.R4路由器

interface Ethernet0/0
ip address 10.1.1.2 255.255.255.0
sno shut

ip route 0.0.0.0 0.0.0.0 10.1.1.1

line vty 0 5
password cisco
login

四.NAT extendable配置:

A.R3路由器:

ip nat inside source static 10.1.1.2 61.128.1.8 extendable
ip nat inside source static 10.1.1.2 202.100.1.8 extendable

B.測(cè)試:    
R1#telnet 202.100.1.8
Trying 202.100.1.8 ... Open


User Access Verification

Password:
R4>show users
   Line       User       Host(s)              Idle       Location
  0 con 0                idle                 06:08:16  
*130 vty 0                idle                 00:00:00 202.100.1.2

 Interface    User               Mode         Idle     Peer Address


R2#telnet 61.128.1.8
Trying 61.128.1.8 ... Open


User Access Verification

Password:
R4>show users
   Line       User       Host(s)              Idle       Location
  0 con 0                idle                 06:09:06  
130 vty 0                idle                 00:00:49 202.100.1.2
*131 vty 1                idle                 00:00:00 61.128.1.2

 Interface    User               Mode         Idle     Peer Address

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI