Juniper EX Series Switch Workshop 筆記分享 Part II
這一份是大部份我在上課作Lab時Dump下來的指令,其中比較複雜的部份我加上了些許的註釋,希望對各位會有所幫助! Initial Configuration with DHCP system { root-authentication { encrypted-password "$1$2Ssh2j.s$0vlh/Jv7fu5xpueSmG8O1/"; ## SECRET-DATA ! 設定 root 登入密碼 } login { user juniper { uid 2000; class super-user; authentication { encrypted-password "$1$AGAzBQkY$QWZ8BSLezx0d7Oh0j.NFw."; ## SECRET-DATA ! 設定使用者登入帳號密碼 } } } services { ssh { root-login allow; ! 設定ssh telnet } web-management { http; ! 設定J-web access } dhcp { pool 192.168.200.0/24 { address-range low 192.168.200.101 high 192.168.200.110; router { 192.168.200.10; } } pool 192.168.3.0/24 { address-range low 192.168.3.101 hig...