freepeople性欧美熟妇, 色戒完整版无删减158分钟hd, 无码精品国产vα在线观看DVD, 丰满少妇伦精品无码专区在线观看,艾栗栗与纹身男宾馆3p50分钟,国产AV片在线观看,黑人与美女高潮,18岁女RAPPERDISSSUBS,国产手机在机看影片

正文內容

juniperex交換機配置指導手冊-資料下載頁

2024-10-14 08:40本頁面
  

【正文】 tions deadinterval Dead interval (seconds) (1..65535) demandcircuit Interface functions as a demand circuit disable Disable OSPF on this interface interfacetype Type of interface ipsecsa IPSec security association name ldpsynchronization Advertise maximum metric until LDP is operational metric Interface metric (1..65535) neighbor NBMA neighbor noneighbordownnotification Don39。t inform other protocols about neighbor down events passive Do not run OSPF, but advertise it pollinterval Poll interval for NBMA interfaces (1..65535) priority Designated router priority (0..255) retransmitinterval Retransmission interval (seconds) (1..65535) temetric Traffic engineering metric (1..65535) transitdelay Transit delay (seconds) (1..65535) | Pipe through a mand [edit] TAB 和空格鍵的使用 交換機 JUNOS 命令配置中,可以使用 TAB 鍵和空格鍵來進行參數的補全,在補全系統(tǒng)參數中兩個鍵的作用是一樣的,例如: lab@EX4200 set pro 輸入 TAB 鍵或者空格鍵,則會補全 protocols lab@EX4200 set protocols 而對于用戶自己定義的參數,則只能用 TAB 來補全,比如我們定義了一個 Test_Policy_1 的策略,要在 ospf 中配置時可以使用 ?來顯示: lab@EX4200 set protocols ospf export ? 第 13頁 共 111頁 Possible pletions: value Export policy ( Open an expression Test_Policy_1 [ Open a set of values [edit] 也可以直接輸入 T 之后按 TAB 鍵來補全,而此時按空格鍵則無法補全: lab@EX4200 set protocols ospf export T 輸入 TAB 鍵,則會補全 Test_Policy_1 lab@EX4200 set protocols ospf export Test_Policy_1 用戶模式和配置模式 show的區(qū)別 在用戶模式下,是無法進行配置操作的,而只能查看系統(tǒng)的一些參數。所以用戶模式下的 show 命令是查看系統(tǒng)參數。要看系統(tǒng)配置則使用 show configure 命令。例如用戶模式下 show interface 是查看端口信息: lab@EX4200 show interfaces Physical interface: ge0/0/1, Enabled, Physical link is Up Interface index: 142, SNMP ifIndex: 31 Linklevel type: Ether, MTU: 1518, Speed: 100mbps, Loopback: Disabled, Source filtering: Disabled, Flow control: Enabled Device flags : Present Running Interface flags: SNMPTraps Internal: 0x4000 CoS queues : 4 supported, 4 maximum usable queues Current address: 00:05:85:dc:cc:db, Hardware address: 00:05:85:dc:cc:db Last flapped : 20200629 20:37:17 HKT (1w2d 00:31 ago) Input rate : 280 bps (0 pps) Output rate : 1280 bps (1 pps) Active alarms : None Active defects : None Logical interface ge0/0/ (Index 83) (SNMP ifIndex 71) Flags: SNMPTraps 0x4000 VLANTag [ ] Encapsulation: ENET2 第 14頁 共 111頁 Input packets : 0 Output packets: 0 Protocol i, MTU: 1500 Flags: None lab@EX4200 而在配置下 show 命令是顯示相關的配置,比如 show interface 則是顯示 interface 部分的配置: lab@EX4200 show interfaces ge0/0/1 { unit 0 { family etherswitching vlan members 10 。 family i。 } } [edit] lab@EX4200 因此說用戶模式和配置模式下的 show 命令是不同的,如果 要在配置模式下運行用戶模式命令,則需要在命令前面加一個 run lab@EX4200 run show interfaces Physical interface: ge0/0/1, Enabled, Physical link is Up Interface index: 142, SNMP ifIndex: 31 Linklevel type: Ether, MTU: 1518, Speed: 100mbps, Loopback: Disabled, Source filtering: Disabled, Flow control: Enabled Device flags : Present Running Interface flags: SNMPTraps Internal: 0x4000 CoS queues : 4 supported, 4 maximum usable queues Current address: 00:05:85:dc:cc:db, Hardware address: 00:05:85:dc:cc:db 第 15頁 共 111頁 Last flapped : 20200629 20:37:17 HKT (1w2d 00:36 ago) Input rate : 792 bps (0 pps) Output rate : 672 bps (0 pps) Active alarms : None Active defects : None Logical interface ge0/0/ (Index 83) (SNMP ifIndex 71) Flags: SNMPTraps 0x4000 VLANTag [ ] Encapsulation: ENET2 Input packets : 0 Output packets: 0 Protocol i, MTU: 1500 Flags: None [edit] lab@EX4200 lab@EX4200 run ping PING (): 56 data bytes 64 bytes from : icmp_seq=0 ttl=64 time= ms 64 bytes from : icmp_seq=1 ttl=64 time= ms 64 bytes from : icmp_seq=2 ttl=64 time= ms ^C ping statistics 3 packets transmitted, 3 packets received, 0% packet loss roundtrip min/avg/max/stddev = [edit] lab@EX4200 lab@EX4200 run ping 命令等同于 lab@EX4200 ping 第 16頁 共 111頁 如何將配置轉換成 set命令 在配置模式下使用 show 或者在用戶模式下使用 show configure 命令,輸出結果是“程序化”的配置,這樣的配置并不 能直接粘貼到另外一臺 交換機 上,不過可以在 show 后面使用管道符號加上 display set 將其轉換成 set 格式命令,然后可以直接粘貼到其它 交換機 上: lab@EX4200 show protocols ospf export Test_Policy_1。 area { interface ge0/0/ { hellointerval 10。 } } [edit] lab@EX4200 show protocols ospf | display set set protocols ospf export Test_Policy_1 set protocols ospf area interface ge0/0/ hellointerval 10 [edit] lab@EX4200 mit和 rollback 在 cisco 中只要輸入命令,回車之后命令馬上生效,因為我們修改的就是系統(tǒng)正在使用的 runningconfig 配置文件。而在 JUNOS 中完全不同,我們操作 (增加、刪除、修改 )的那份配置文件只是一個候 選文件 (candidate configure),并不是正在運行的配置文件,只有將候選文件通過 mit 提交之后,配置才會真正的應用到當前系統(tǒng)使用的 active 配置文件中,從而使得修改的配置生效。 第 17頁 共 111頁 為了檢查配置是否有錯,可以在 mit 之前使用 mit check 來對配置進行語法檢查。 為了避免提交時出錯,建議不要同時兩個人修改配置。 如果提交之后,可以使用 rollback 進行回滾, rollback 1 回滾上一次提前之前的配置, rollback 2 則是回滾上 2 次提交之前的配置: lab@EX4200 show system hostname hostname EX4200。 [edit] lab@EX4200 set system hostname R1 [edit] lab@EX4200 mit mit plete [edit] lab@EX4200 show system hostname hostname EX4200。 [edit] lab@EX4200 rollback 1 load plete 第 18頁 共 111頁 [edit] lab@EX4200 show system hostname hostname EX4200。 [edit] lab@EX4200 mit mit plete [edit] lab@EX4200 2 操作 指導 通過 console 線連接交換機 使用下面的步驟連接路由器的 Console接口: 1. 準備好 EX交換機設備自帶的 Co
點擊復制文檔內容
黨政相關相關推薦
文庫吧 www.dybbs8.com
備案圖鄂ICP備17016276號-1