Presentation is loading. Please wait.

Presentation is loading. Please wait.

Cisco Router Configuration AfNOG 2003 / Track 2 # 1 Cisco Router Configuration Basics Presented By Mark Tinka (Uganda)

Similar presentations


Presentation on theme: "Cisco Router Configuration AfNOG 2003 / Track 2 # 1 Cisco Router Configuration Basics Presented By Mark Tinka (Uganda)"— Presentation transcript:

1 Cisco Router Configuration AfNOG 2003 / Track 2 # 1 Cisco Router Configuration Basics Presented By Mark Tinka (Uganda)

2 Cisco Router Configuration AfNOG 2003 / Track 2 # 2 Router Components äBootstrap – stored in ROM microcode – brings router up during initialisation, boots router and loads the IOS. äPOST – Power On Self Test - stored in ROM microcode – checks for basic functionality of router hardware and determines which interfaces are present äROM Monitor – stored in ROM microcode – used for manufacturing, testing and troubleshooting äMini-IOS – a.k.a RXBOOT/boot loader by Cisco – small IOS ROM used to bring up an interface and load a Cisco IOS into flash memory from a TFTP server; can also do a few other maintenance operations

3 Cisco Router Configuration AfNOG 2003 / Track 2 # 3 Router Components äRAM – holds packet buffers, ARP cache, routing table, software and data structure that allows the router to function; running-config is stored in RAM, as well as the decompressed IOS in later router models äROM – starts and maintains the router äFlash memory – holds the IOS; is not erased when the router is reloaded; is an EEPROM [Electrically Erasable Programmable Read-Only Memory] created by Intel, that can be erased and reprogrammed repeatedly through an application of higher than normal electric voltage äNVRAM – Non-Volatile RAM - holds router configuration; is not erased when router is reloaded

4 Cisco Router Configuration AfNOG 2003 / Track 2 # 4 Router Components  Config-Register – controls how router boots; value can be seen with “ show version ” command; is typically 0x2102, which tells the router to load the IOS from flash memory and the startup-config file from NVRAM

5 Cisco Router Configuration AfNOG 2003 / Track 2 # 5 Why Modify The Config-Register äReasons why you would want to modify the config- register: –Force the router into ROM Monitor Mode – Select a boot source and default boot filename – Enable/Disable the Break function – Control broadcast addresses – Set console terminal baud rate – Load operating software from ROM – Enable booting from a TFTP server

6 Cisco Router Configuration AfNOG 2003 / Track 2 # 6 System Startup äPOST – loaded from ROM and runs diagnostics on all router hardware äBootstrap – locates and loads the IOS image; default setting is to load the IOS from flash memory  IOS – locates and loads a valid configuration from NVRAM; files is called startup-config ; only exists if you copy running-config to NVRAM äStartup-config – if found, router loads it and runs embedded configuration; if not found, router enters setup mode

7 Cisco Router Configuration AfNOG 2003 / Track 2 # 7 Overview äRouter configuration controls the operation of the router’s: äInterface IP address and netmask äRouting information (static, dynamic or default) äBoot and startup information äSecurity (passwords)

8 Cisco Router Configuration AfNOG 2003 / Track 2 # 8 Where Is The Configuration? äRouter always has two configurations: äRunning configuration äIn RAM, determines how the router is currently operating  Is modified using the configure command  To see it: show running-config äStartup confguration äIn NVRAM, determines how the router will operate after next reload  Is modified using the copy command  To see it: show startup-config

9 Cisco Router Configuration AfNOG 2003 / Track 2 # 9 Where Is The Configuration? äCan also be stored in more permanent places: äExternal hosts, using TFTP (Trivial File Transfer Protocol) äIn flash memory in the router äCopy command is used to move it around copy run start copy run tftp copy start tftp copy tftp start copy flash start copy start flash

10 Cisco Router Configuration AfNOG 2003 / Track 2 # 10 Router Access Modes äUser EXEC mode - limited examination of router –Router> äPrivileged EXEC mode - detailed examination of router, debugging, testing, file manipulation –Router# äROM Monitor - useful for password recovery & new IOS upload session  Setup Mode – available when router has no startup-config file

11 Cisco Router Configuration AfNOG 2003 / Track 2 # 11 External Configuration Sources äConsole – direct PC serial access äAuxilliary port – Modem access äVirtual terminals – Telnet access äTFTP Server – copy configuration file into router RAM äNetwork Management Software - CiscoWorks

12 Cisco Router Configuration AfNOG 2003 / Track 2 # 12 Changing The Configuration äConfiguration statements can be entered interactively - changes are made (almost) immediately, to the running configuration äCan use direct serial connection to console port, or äTelnet to vty’s (“virtual terminals”), or äModem connection to aux port  Or, edited in a text file and uploaded to the router at a later time via tftp; copy tftp start or config net

13 Cisco Router Configuration AfNOG 2003 / Track 2 # 13 Logging Into The Router äConnect router to console port or telnet to router –router> –router>enable –password –router# –router#? äConfiguring the router –Terminal (entering the commands directly) –router# configure terminal –router(config)# USER MODE PROMPT PRIVILEDGED MODE PROMPT

14 Cisco Router Configuration AfNOG 2003 / Track 2 # 14 Connecting Your FreeBSD Machine To The Router’s Console Port äConnect your machine to the console port using the rollover serial cable provide äGo to /etc/remote to see the device configured to be used with "tip”.you will see at the end, a line begin with com1 bash$ tip com1 router> router>enable router#

15 Cisco Router Configuration AfNOG 2003 / Track 2 # 15 SWITCH A C E I G 81.199.108.80/28 81.199.108.112/28 81.199.108.144/28 81.199.108.176/28 81.199.108.208/28 B F D H J 81.199.108.96/28 81.199.108.128/28 81.199.108.160/28 81.199.108.192/28 81.199.108.224/28 Address Allocation 81.199.108.0/28.1.3.5.7.9.2.4.6.8.10

16 Cisco Router Configuration AfNOG 2003 / Track 2 # 16 New Router Configuration Process äLoad configuration parameters into RAM äRouter#configure terminal äPersonalize router identification äRouter#(config)hostname RouterA äAssign access passwords äRouterA#(config)line console 0 äRouterA#(config-line)password cisco äRouterA#(config-line)login

17 Cisco Router Configuration AfNOG 2003 / Track 2 # 17 New Router Configuration Process äConfigure interfaces äRouterA#(config)interface ethernet 0/0 äRouterA#(config-if)ip address n.n.n.n m.m.m.m äRouterA#(config-if)no shutdown äConfigure routing/routed protocols äSave configuration parameters to NVRAM äRouterA#copy running-config startup-config or write memory

18 Cisco Router Configuration AfNOG 2003 / Track 2 # 18 Router Prompts – How To Tell Where You Are On The Router äYou can tell in which area of the router’s configuration you are, by looking at the router prompts: Router> - USER prompt mode Router# - PRVILEDGED EXEC prompt mode Router(config) – terminal configuration prompt Router(config-if) – interface configuration prompt Router(config-subif) – sub-interface configuration prompt Router(config-route-map) – route-map configuration prompt

19 Cisco Router Configuration AfNOG 2003 / Track 2 # 19 Router Prompts – How To Tell Where You Are On The Router Router(config-router) – router configuration prompt Router(config-line) – line configuration prompt rommon 1> - ROM Monitor mode

20 Cisco Router Configuration AfNOG 2003 / Track 2 # 20 Configuring Your Router äSet the enable password: router(config)# enable password t2@afnog  If you see in your config file, using “ show running-config ”, you will see that the enable password is displayed in clear text -- that is not safe, you have to encrypt it. router(config)# service password-encryption router(config)# enable secret "your pswd"(MD5 encryption) äTo configure interface you should go to interface configuration prompt router(config) interface ethernet0 (or 0/x) router(config-if)# äSave your configuration router#copy running-config startup-config (or write memory)

21 Cisco Router Configuration AfNOG 2003 / Track 2 # 21 Configuring Your Router äConfiguration statements have different contexts: äGlobal: enable-password t2@afnog äInterface: interface ethernet0/0 ip address n.n.n.n m.m.m.m äRouter: router ospf 1 network n.n.n.n w.w.w.w area 0 äLine: line vty 0 4

22 Cisco Router Configuration AfNOG 2003 / Track 2 # 22 Global Configuration äGlobal configuration statements are independent of any particular interface or routing protocol, e.g.: hostname track2-afnog enable-password track2 service password-encryption logging facility local0 logging n.n.n.n

23 Cisco Router Configuration AfNOG 2003 / Track 2 # 23 Global Configuration äIP-specific global configuration statements: ip classless ip name-server n.n.n.n äStatic route creation: Ip route n.n.n.n m.m.m.m g.g.g.g n.n.n.n = network block m.m.m.m = network mask denoting block size g.g.g.g = next hop gateway destination packets are sent to

24 Cisco Router Configuration AfNOG 2003 / Track 2 # 24 The NO Command äUsed to reverse or disable commands e.g äip domain-lookup äno ip domain-lookup ärouter ospf 1 äno router ospf 1 äip address 1.1.1.1 255.255.255.0 äno ip address

25 Cisco Router Configuration AfNOG 2003 / Track 2 # 25 Interface Configuration äInterfaces are named by slot/type; e.g.: ethernet0, ethernet1,... Ethernet5/1 Serial0/0, serial1... serial3 äAnd can be abbreviated: ethernet0 or eth0 or e0 Serial0/0 or ser0/0 or s0/0

26 Cisco Router Configuration AfNOG 2003 / Track 2 # 26 Interface Configuration äIP address and netmask configuration, using interface commands (interactive configuration example, showing prompts): router#configure terminal router(config)#interface e0/0 router(config-if)# ip address n.n.n.n m.m.m.m router(config-if)#no shutdown router(config-if)#^Z router#

27 Cisco Router Configuration AfNOG 2003 / Track 2 # 27 Interface Configuration äAdministratively enable/disable the interface router(config-if)#no shutdown router(config-if)#shutdown äDescription router(config-if)#description ethernet link to admin building router

28 Cisco Router Configuration AfNOG 2003 / Track 2 # 28 Global Configuration Commands äCisco global config should always include: ip classless ip subnet-zero no ip domain-lookup äCisco interface config should usually include: no shutdown no ip proxy-arp no ip redirects

29 Cisco Router Configuration AfNOG 2003 / Track 2 # 29 Looking At The Configuration  Use “show running-configuration” to see the current configuration  Use “show startup-configuration” to see the configuration in NVRAM, that will be loaded the next time the router is rebooted or reloaded

30 Cisco Router Configuration AfNOG 2003 / Track 2 # 30 Interactive Configuration äEnter configuration mode, using “configure term” äPrompt gives a hint about where you are: router#configure term router(config)#ip classless router(config)#ip subnet-zero router(config)#int e0/1 router(config-if)#ip addr n.n.n.n m.m.m.m router(config-if)#no shut router(config-if)#^Z

31 Cisco Router Configuration AfNOG 2003 / Track 2 # 31 Storing The Configuration On A Host  Requires: `tftpd’ on a unix host; destination file must exist before the file is written and must be world writable... copy run tftp router#copy run tftp Remote host []? n.n.n.n Name of configuration file to write [hostel-rtr-confg]? /usr/local/tftpd/hostel-rtr-confg Write file /usr/local/tftpd/hostel-rtr-confg on... Host n.n.n.n? [confirm] Building configuration... Writing /usr/local/tftpd/hostel-rtr-confg !![OK]

32 Cisco Router Configuration AfNOG 2003 / Track 2 # 32 Restoring The Configuration From A Host äUse ‘tftp’ to pull file from UNIX host, copying to running config or startup router#copy tftp start Address of remote host [255.255.255.255]? n.n.n.n Name of configuration file [hostel-rtr-confg]? Configure using hostel-rtr-confg from n.n.n.n? [confirm] Loading hostel-rtr-confg from n.n.n.n(via Ethernet0/0): ! [OK - 1005/128975 bytes] [OK] hostel-rtr# reload

33 Cisco Router Configuration AfNOG 2003 / Track 2 # 33 Getting Online Help äIOS has a built-in help facility; use “?” to get a list of possible configuration statements ä“?” after the prompt lists all possible commands: router#?  “ ?” lists all possible subcommands, e.g.: router#show ? router#show ip ?

34 Cisco Router Configuration AfNOG 2003 / Track 2 # 34 Getting Online Help ä“ ?” shows all possible command completions router#con? configure connect äThis is different: hostel-rtr#conf ? memory Configure from NVRAM network Configure from a TFTP network host overwrite-network Overwrite NV memory from TFTP... network host terminal Configure from the terminal

35 Cisco Router Configuration AfNOG 2003 / Track 2 # 35 Getting Online Help äThis also works in configuration mode: router(config)#ip a? accounting-list accounting-threshold accounting-transits address-pool alias as-path router(config)#int e0/0 router(config-if)#ip a? access-group accounting address

36 Cisco Router Configuration AfNOG 2003 / Track 2 # 36 Getting Online Help äCan “explore” a command to figure out the syntax: router(config-if)#ip addr ? A.B.C.D IP address router(config-if)#ip addr n.n.n.n ? A.B.C.D IP subnet mask router(config-if)#ip addr n.n.n.n m.m.m.m ? secondary Make this IP address a secondary address router(config-if)#ip addr n.n.n.n m.m.m.m router(config-if)#

37 Cisco Router Configuration AfNOG 2003 / Track 2 # 37 Getting Lazy Help äTAB character will complete a partial word hostel-rtr(config)#int hostel-rtr(config)#interface et hostel-rtr(config)#interface ethernet 0 hostel-rtr(config-if)#ip add hostel-rtr(config-if)#ip address... n.n.n.n m.m.m.m äNot really necessary; partial commands can be used: router#conf t router(config)#int e0/0 router(config-if)#ip addr n.n.n.n

38 Cisco Router Configuration AfNOG 2003 / Track 2 # 38 Getting Lazy Online Help äCommand history äIOS maintains short list of previously typed commands  up-arrow or ‘ ^p ’ recalls previous command  down-arrow or ‘^n’ recalls next command äLine editing äleft-arrow, right-arrow moves cursor inside command  ‘^d’ or backspace will delete character in front of cursor äCtrl-a takes you to start of line äCtrl-e takes you to end of line

39 Cisco Router Configuration AfNOG 2003 / Track 2 # 39 Connecting Your FreeBSD Machine To The Router’s Console Port äLook at your running configuration äConfigure an IP address for e0/0 depending on your table - use n.n.n.n for table A etc äLook at your running configuration and your startup configuration äWhat difference is there if any

40 Cisco Router Configuration AfNOG 2003 / Track 2 # 40 Deleting Your Router’s Configuration äTo delete your router’s configuration Router#erase startup-config OR Router#write erase Router#reload Router will startup again, but in setup mode, since startup-config file does not exists

41 Cisco Router Configuration AfNOG 2003 / Track 2 # 41 Using Access Control Lists äAccess Control Lists used to implement security in routers –powerful tool for network control –filter packets flow in or out of router interfaces –restrict network use by certain users or devices –deny or permit traffic

42 Cisco Router Configuration AfNOG 2003 / Track 2 # 42 Rules Followed When Traffic Is Compared To An Access Control List äIs done in sequential order; line 1, line 2, line 3 e.t.c äIs compared with the access list until a match is made; then NO further comparisons are made äThere is an implicit “deny” at the end of each access list; if a packet does not match in the access list, it will be discarded

43 Cisco Router Configuration AfNOG 2003 / Track 2 # 43 Using Access Control Lists äStandard IP Access Lists (1 - 99) –simpler address specifications –generally permits or denies entire protocol suite äExtended IP Access Lists (100 - 199) –more complex address specification –generally permits or denies specific protocols

44 Cisco Router Configuration AfNOG 2003 / Track 2 # 44 Access Control List Syntax äStandard IP Access List Configuration Syntax –access-list access-list-number {permit | deny} source {source-mask} –ip access-group access-list-number {in | out} äExtended IP Access List Configuration Syntax –access-list access-list-number {permit | deny} protocol source {source-mask} destination {destination-mask} –ip access-group access-list-number {in | out}

45 Cisco Router Configuration AfNOG 2003 / Track 2 # 45 Where To Place Access Control Lists äPlace Standard IP access list close to destination äPlace Extended IP access lists close to the source of the traffic you want to manage

46 Cisco Router Configuration AfNOG 2003 / Track 2 # 46 What Are Wild Card Masks äAre used with access lists to specify a host, network or part of a network äTo specify an address range, choose the next largest block size e.g. –to specify 34 hosts, you need a 64 block size – to specify 18 hosts, you need a 32 block size – to specify 2 hosts, you need a 4 block size

47 Cisco Router Configuration AfNOG 2003 / Track 2 # 47 What Are Wild Card Masks äAre used with the host/network address to tell the router a range of addresses to filter äExamples: – to specify a host: 81.199.108.1 0.0.0.0 – to specify a small subnet: 81.199.108.8 – 81.199.108.15 (would be a /29) –Block size is 8, and wildcard is always one number less than the block size –Cisco access list then becomes: 81.199.108.8 0.0.0.7

48 Cisco Router Configuration AfNOG 2003 / Track 2 # 48 What Are Wild Card Masks äExamples cont’d: – to specify all hosts on a Class C network: 81.199.108.0 0.0.0.255

49 Cisco Router Configuration AfNOG 2003 / Track 2 # 49 What Are Wild Card Masks äShort cut method to a quick calculation of a network subnet to wildcard: – 255 – {netmask bits on subnet mask} – to create wild card mask for 81.199.108.160 255.255.255.240 81.199.108.160 0.0.0.15 {255 – 240} – to create wild card mask for 81.199.108.0 255.255.252.0 81.199.108.0 0.0.3.255

50 Cisco Router Configuration AfNOG 2003 / Track 2 # 50 Access Control List Example äRouter(config)#Access-list access-list-number {permit|deny}{test conditions} äRouter(config)#{protocol} access-group access-list-number äe.g check for IP subnets 81.199.108.80 to 81.199.108.95 81.199.108.80 0001 0000 0000 check 1111 ignore Address and Wilcard Mask: 81.199.108.80 0.0.0.15

51 Cisco Router Configuration AfNOG 2003 / Track 2 # 51 Access Control List Example äWildcard bits indicate how to check corresponding address bit –0=check or match –1=ignore äMatching Any IP Address 0.0.0.0 255.255.255.255 or abbreviate the expression using the keyword any äMatching a specific host 81.199.108.8 0.0.0.0 or abbreviate the wildcard using the IP address preceded by the keyword host

52 Cisco Router Configuration AfNOG 2003 / Track 2 # 52 Permit Telnet Access For My Network Only access-list 1 permit 81.199.108.192 0.0.0.15 access-list 1 deny any line vty 0 4 access-class 1 in

53 Cisco Router Configuration AfNOG 2003 / Track 2 # 53 Standard IP Access Control Lists Example Permit Only My Network Non 81.199.108.0 81.199.108.181.199.108.81 81.199.108.82E0E1 S0 Access-list 1 permit 81.199.108.80 0.0.0.15 Interface ethernet 0 ip access-group 1 out interface ethernet 1 ip access-group 1 out

54 Cisco Router Configuration AfNOG 2003 / Track 2 # 54 Extended IP Access Control Lists Example Deny FTP Access Through Interface E0 Non 81.199.108.0 81.199.108.1081.199.108.225 81.199.108.226E0E1 S0 access-list 101 deny tcp 81.199.108.0 0.0.0.15 81.199.108.225 0.0.0.15 eq 21 access-list 101 deny tcp 81.199.108.0 0.0.0.15 81.199.108.225 0.0.0.15 eq 20 access-list 101 permit ip 81.199.108.225 0.0.0.15 0.0.0.0 255.255.255.255 interface ethernet 0 ip access-group 101 out

55 Cisco Router Configuration AfNOG 2003 / Track 2 # 55 Prefix Lists äCisco first introduced prefix lists in IOS 12.0 + äGenerally used to filter routes, and can be combined with route maps for route filtering and manipulation äAre more scalable and flexible than access control lists and distribute lists äUnlike access control lists, you don’t have to delete the entire access list when adding or deleting entries äPrefix lists use sequence numbers for this to happen äPrefix lists scale as the network grows

56 Cisco Router Configuration AfNOG 2003 / Track 2 # 56 Prefix Lists äPrefix lists have an implicit “deny” at the end of them, like access control lists äAre quicker to process than regular access control lists äIf you do have IOS 12.0 +, it would be a better idea to use prefix lists rather than distribute or access lists, for route filtering and manipulation

57 Cisco Router Configuration AfNOG 2003 / Track 2 # 57 Prefix List Configuration Syntax äPrefix list configuration syntax config t ip prefix-list list-name {seq seq-value} {permit|deny} network/len {ge ge-value} {le le-value} list-name – name to use for the prefix list seq-value – numeric value of the sequence; optional network/len – CIDR network address notation

58 Cisco Router Configuration AfNOG 2003 / Track 2 # 58 Prefix List Configuration Syntax äPrefix list configuration Syntax ge-value – “from” value of range; matches equal or longer prefixes (more bits in the prefix, smaller blocks of address space) le-value – “to” value of range; matches equal or shorter prefixes (less bits in the prefix, bigger blocks of address space)

59 Cisco Router Configuration AfNOG 2003 / Track 2 # 59 Prefix List Configuration Example äPrefix list configuration example ip prefix-list t2afnog seq 10 deny 81.199.108.192/28 To accept prefixes with a prefix length of /8 up to /24: ip prefix-list test1 seq 5 permit 81.0.0.0/0 ge 8 le 24 To deny prefixes with a mask greater than 25 in 81.199.108.0/24: ip prefix-list test2 seq 10 deny 81.199.108.0/24 ge 25

60 Cisco Router Configuration AfNOG 2003 / Track 2 # 60 Prefix List Configuration Example To allow all routes: ip prefix-list test3 seq 15 permit 0.0.0.0/0 le 32

61 Cisco Router Configuration AfNOG 2003 / Track 2 # 61 Disaster Recovery – ROM Monitor äROM Monitor is very helpful in recovering from emergency failures such as: –Password recovery – Upload new IOS into router with NO IOS installed – Selecting a boot source and default boot filename – Set console terminal baud rate to upload new IOS quicker – Load operating software from ROM – Enable booting from a TFTP server

62 Cisco Router Configuration AfNOG 2003 / Track 2 # 62 Disaster Recovery – ROM Monitor äHow to get the router into ROM Monitor mode: äWindows using HyperTerminal for the console session –Ctrl-Break

63 Cisco Router Configuration AfNOG 2003 / Track 2 # 63 Disaster Recovery – ROM Monitor äHow to get the router into ROM Monitor mode: äFreeBSD/UNIX using Tip for the console session –, then ~# OR – Ctrl-], then Break or Ctrl-C

64 Cisco Router Configuration AfNOG 2003 / Track 2 # 64 Disaster Recovery – ROM Monitor äHow to get the router into ROM Monitor mode: äLinux using Minicom for the console session – Ctrl-A F

65 Cisco Router Configuration AfNOG 2003 / Track 2 # 65 Disaster Recovery – How To Recover A Lost Password äConnect your PC’s serial port to the router’s console port äConfigure your PC’s serial port: 9600 baud rate No parity 8 data bits 1 stop bit No flow control

66 Cisco Router Configuration AfNOG 2003 / Track 2 # 66 Disaster Recovery – How To Recover A Lost Password  Your configuration register should be 0x2102; use “ show version ” command to check äReboot the router and apply the Break-sequence within 60 seconds of powering the router, to put it into ROMMON mode Rommon 1>confreg 0x2142 Rommon 2>reset Router reboots, bypassing startup-config file

67 Cisco Router Configuration AfNOG 2003 / Track 2 # 67 Disaster Recovery – How To Recover A Lost Password Type Ctrl-C to exit Setup mode Router>enable Router#conf m or copy start run (only!!!) Router#show running or write terminal Router#conf t Router(config)enable secret forgotten Router(config)int e0/0… Router(config-if)no shut Router(config)config-register 0x2102 Router(config)Ctrl-Z or end Router#copy run start or write memory Router#reload

68 Cisco Router Configuration AfNOG 2003 / Track 2 # 68 Using TFTP To Manage Your Router’s Software äEnable TFTP on your FreeBSD machine: #vi /etc/inetd.conf (uncomment the #tftp line) #killall –HUP inetd (restart INETD and load TFTPD) #netstat –an (check to see TFTP port is bound) #touch /tftpboot/cisco-router (create the router data for TFTP) #chmod 666 /tftp/cisco-router (make the data file world writeable)

69 Cisco Router Configuration AfNOG 2003 / Track 2 # 69 Using TFTP To Manage Your Router’s Software äYour router’s configuration Router#copy start tftp Router#copy tftp start Router#copy flash tftp Router#copy tftp flash Router#copy run tftp

70 Cisco Router Configuration AfNOG 2003 / Track 2 # 70 END


Download ppt "Cisco Router Configuration AfNOG 2003 / Track 2 # 1 Cisco Router Configuration Basics Presented By Mark Tinka (Uganda)"

Similar presentations


Ads by Google