Basic Config Router&Switch อ.กฤติเดช จินดาภัทร์
Basic Config Router&Switch การเข้าใช้งาน หรือตัองค่าอุปกรณ์เราเตอร์ยี่ห้อ cisco มีอยู่4 โหมดหลัก ๆ คือ User EXEC Mode หรือเรียกว่า User Mode Privileged Mode หรือเรียกว่า Enable Mode Configuration Mode Interface configuration mode Mode สัญลักษณ์ การใช้งาน User > เช็กสถานการณ์ทำงานต่างๆ Show Run Config Privileged # ใช้ Config Set IP Address
Basic Config Router&Switch Router> (สัญลักษณ์เป็นเครื่องหมาย > แสดงว่าเป็น User Mode) Router# (สัญลักษณ์จะเปลี่ยนเป็นเครื่องหมาย # แสดงว่าเป็น Privileged Mode แล้ว) Router(config)#(เข้าสู่ Configuration Mode ซึ่งจะสามารถท าการตั้งค่าต่าง ๆ ให้กับตัวอุปกรณ์ได้) …………………………..
Basic Config Router&Switch Router>enable(ใช้ค าสั่ง enable เพื่อท าการเข้าสู่Privileged Mode) Router(config)# (เข้าสู่ Configuration Mode ซึ่งจะสามารถท าการตั ้งค่าต่าง ๆ ให้กับตัว อุปกรณ์ได้)ure terminal (ใช้ค าสั่ง configure terminal เพื่อเข้าสู่Configuration Mode) Router(config)#interface f0/0 (ใ ช้ ค า สั่ ง interface f0/0 เ พื่ อ เ ข้ า สู่ Interface configuration mode) Router(config-if)# (เข้าสู่ Interface configuration mode ซึ่งจะสามารถท าการตั ้ง ค่าต่าง ๆ ให้กับตัวอุป Router(config-if)#exit (ใช้ค าสั่งexit เพื่อออกจากInterface configuration mode หรือ ใช้ค าสั่ง end เพื่อเข้าสู่ Privileged Mode)กรณ์ได้)
Basic Config Router&Switch 1.ตั้งชื่อ Hostname Router>enable Router# Router#configure terminal Router(config)# Router(config)#hostname AJjoke AJjoke(config)#
Basic Config Router&Switch 2. การตั้งค่า enable password AJjoke #configure terminal AJjoke(config)#enable password 1234 (ตั้ง password เป็น 1234)
Basic Config Router&Switch 3. การตงั้ค่า enable secret เป็นการตงั้ Password ในการเปลี่ยนจาก user mode เป็น privileged mode เช่นเดียวกับ enable password แต่จะมีการเข้ารหัสไว้ เมื่อใช้ค าสั่ง show running-config จะไม่ เห็นรหสัที่ตงั้ไว้ AJjoke #configure terminal AJjoke(config)#enable secret cisco (ตั้ง enable secret เป็นคำว่า cisco)
Basic Config Router&Switch 4) Banner Motd : ## Welcome to techno Network## (ห้ามใช้ ! ในประโยค ) AJjoke #configure terminal AJjoke(config)#banner motd ! Enter TEXT message. End with the character '!'. ## Welcome to techno Network ## ! AJjoke(config)#
Basic Config Router&Switch 5) Line console 0 : password cisco การตงั้ค่า line console ควรทำ line console ไว้เพื่อปอ้งกนับคุคลภายนอกเข้ามาแก้ไข ตรวจสอบ ข้อมลูของเราเตอร์ (Line Console คือการน าสาย Console มาเสียบด้านหลงัอปุกรณ์นั้น ๆ) AJjoke #configure terminal AJjoke(config)#line console 0 (console 0 หมายถึงมีพอร์ต console เพียง พอร์ตเดียว คือ พอร์ต 0) AJjoke(config-line)#password cisco (ตงั้ password เป็นคำว่า cisco) AJjoke(config-line)#login (ส่วนนี้เป็นการเปิดใช้งาน Line Console หากไม่มี Command “login” password ที่ใช้บน Line Console ก็จะไม่ทำงาน)
Basic Config Router&Switch 6) Line vty 0 4 : password cisco การตงั้คา่ line vty เป็นการเปิด Service ให้ Remote ได้ โดยใช้ค าสงั่ Telnet ตามด้วยหมายเลข IP Address ใน Command Prompt AJjoke #configure terminal AJjoke(config)#line vty 0 4 (0 4 หมายถึงเปิดไว้ 5 line หรือ 5 sessions หรือสามารถเข้ามา Telnet ได้พร้อมกนั 5 คน) AJjoke(config-line)#password cisco (ตงั้ password เป็นค าวา่ cisco) AJjoke(config-line)#login (สว่นนีเ้ป็นการเปิดใช้งาน Line vty หากไมม่ี Command “login” password ที่ใช้บน Line vty ก็จะไมท่ างาน)
Basic Config Router&Switch 7) IP Address Interface f0/0 : 192.168.1.254/24, Interface f0/0: 192.168.1.253/24 การใส่ IP Address หรือการเปิดใช้งาน command ตา่ง ๆ บน Interface ต้องเข้ามาที่โหมดนีโ้ดย ท าการระบ ุInterface หรือ Port ที่ต้องการ Config เข้าใน Command AJjoke #configure terminal AJjoke(config)#interface f0/0 (ก าหนดพอร์ต f0/0 ที่ต้องการตงั้คา่) AJjoke(config-if)#ip address 192.168.1.254 255.255.255.0 (ตงั้คา่ IP Address และSubnet Mask) AJjoke(config-if)#no shutdown (เป็นการเปิดให้พอร์ต f0/0 ท างาน) (หากตงั้คา่ถกูต้องจะ มีข้อความแจ้งเตือนขนึ้วา่ Interface FastEthernet0/0, changed state to up ดงัข้อความด้านบน)
Basic Config Router&Switch 8) Save Configuration คือ การคดัลอกไฟล์จากที่หนงึ่ไปเก็บไว้อีกที่หนงึ่ โดยมีรูปแบบค าสงั่ดงันี้ Router#copy <source> <destination> (Source หรือ destination อาจจะเป็นRunningconfiguration, Startup-configuration, Tftp, Flash) ตัวอย่าง AJjoke #copy running-config startup-config Destination filename [startup-config]? Building configuration... [OK] AJjoke # (เป็นการคัดลอก running configuration ไปยัง Start-up configuration หรือ หมายถึงการคดัลอก Configuration ปัจจบุนัไปยงั NVRAM)
Basic Config Router&Switch 9) Backup Configuration เป็นการคดัลอก running configuration ไปเก็บไว้ใน tftp server ก่อนที่จะคัดลอก running configuration ไป เก็บไว้ใน tftp server จะต้องมีการเตรียมการสา รอง Network Backup - ลงโปรแกรม tftp ที่ server ปลายทาง - มีการเปิดโปรแกรม tftp แล้วเช็ค ping ดวูา่ต้นทางกบัปลายทางสามารถติดตอ่กนัได้ไหม - อาจสร้างโฟล์เดอร์ขนึ้ใหมส่า หรับเก็บไฟล์ที่ท าการ Backup
Basic Config Router&Switch 10) Clear Configuration ลบค าสงั่ตา่ง ๆ ที่อยใู่น NV-RAM ออก AJjoke #erase startup-config Erasing the nvram filesystem will remove all configuration files! Continue? [confirm] [OK] Erase of nvram: complete %SYS-7-NV_BLOCK_INIT: Initialized the geometry of nvram
Basic Config Router&Switch 11) Restore Configuration ในกรณีที่เรามีไฟล์ config เก็บไว้ หากต้องการใช้ไฟล์ config นนั้ สามารถท าได้โดยการ backup ข้อมลูลงเราเตอร์ได้ทนัที โดยไม่ต้องท าการตงั้ค่าเอง การ Restore Configuration สามารถท าได้ 3 ค าสงั่ 1. flash: Copy to flash: file system 2. running-config Copy configuration from system 3. startup-config Copy startup configuration from system ตัวอย่าง AJjoke #copy tftp: running-config Address or name of remote host []? 192.168.1.1 Source filename []? backup13_12_2015 Destination filename [running-config]? (Enter) OK
Basic Config WAN
Basic Config WAN
Basic Config WAN การดูค่าของ routing การดูค่า routing ที่ router A ให้ใช้คำสั่งดังนี้ : site-A#show ip route การดูค่า routing ที่ router B ให้ใช้คำสั่งดังนี้ : site-B#show ip route
Basic Config WAN จากการคอนฟิกที่ผ่านมามีจุดที่เป็นหัวใจสำคัญอยู่จุดหนึ่ง ขอให้ดูตัวอย่างการคอนฟิกที่เราเตอร์ A ก่อน ถ้าเราดูรูปแล้วจะเห็นว่าเครือข่ายของ site-A นั่นคือเครือข่ายแลน 192.168.11.0/24 มีความต้องการที่จะต้องติดต่อไปยังเครือข่ายแลน 192.168.12.0/24 ของ site-B วิธีการที่จะทำให้ติดต่อกันได้คือการทำ ip route ซึ่งคำสั่งของ ip route เป็นดังนี้ #ip route เครือข่ายปลายทางที่ต้องการติดต่อด้วย ผ่านไปทางพอร์ตไหน โดย "เครือข่ายปลายทางที่ต้องการติดต่อด้วย" ก็ให้ระบุ ip พร้อมกับ subnetmask ของเครือข่ายนั้น ส่วน "ผ่านไปทางพอร์ตไหน" ก็ให้ระบุ ip ของwan ฝั่งตรงข้ามครับ ดังนั้น ที่เราเตอร์ A จึงได้เป็น : site-A(config)#ip route 192.168.12.0 255.255.255.0 192.168.0.2
A&Q Thank You ! www.charprom.com