Feeds:
Posts
Comments

Archive for August, 2008

[taken from IE VOL1 workbook]
It’s best to only allow SSH access on your VTY ports. Here’s how you can do it:
1) Configure a domain name on your router:
Rack1R4(config)#ip domain-name internetworkexpert.com
2) Generate the keys:
Rack1R4(config)#crypto key generate rsa general-keys modulus 512
3) Configure the VTY ports with SSH access only:
Rack1R4(config)#line vty 0 4
Rack1R4(config-line)#transport input ssh
4) enable local login [...]

Read Full Post »

[hint taken from Brian Dennis's CoD]
Suppose you are using a term server to login to all your routers. And you’re on R1. You SSH to R4. How do you go back to R1? See below:
ccie-ts#1
[Resuming connection 1 to r1 ... ]
Rack1R1#ssh -l CISCO 155.1.146.4
Password:
Rack1R4>
<—-now you want to go back to R1, how would you do [...]

Read Full Post »

concept learnt from IE’s Vol5.0 workbook for “IP Routing”

When routing to a next-hop value the router performs L2 to L3 resolution on the next-hop address. (e.g. ip route 150.1.4.4 255.255.255.255 155.1.146.4). So in the arp table, you’ll see the MAC for ip address: 155.1.146.4.
When routing to an INTERFACE, the router performs L2 to L3 resolution [...]

Read Full Post »

is awesome! I listen to one chapter every night before going to sleep….yes yes, I end up dreaming in Scott Morris’s voice but hey, you have to make some sacrfices in order to get IE right?
The best thing about it is that it’s not too long and windy and I get what I [...]

Read Full Post »

I really like the way Brian McG explains stuff. In just the first CoD on QoS, he cleared a lot of confusions I had. I have to hear the rest of the CoDs on QoS but here are my notes from the first one for now…

QOS

when we’re talking about QoS, we’re giving different levels of [...]

Read Full Post »

Usually when I reboot a router after cleaning it’s startup config…I just copy and paste this on all my routers and switches just to get started (if I’m not using pre-configed stuff):
en
conf t
no ip domain-lookup
line con 0
exec-time 0 0
logg sync
hostname
Also, on my term server, since I always have stuck sessions from my last lab, I [...]

Read Full Post »