PayDay loans car insurance

Breaking into a Router

A colleague of mine passed this along to me recently. It is an old trick for breaking into a router. Of course you only should do this as a last resort, you know like when users are down, equipment has failed, executives are swarming, job is on the line, etc.

Here are the console session settings:

  • 1200 baud rate
  • No parity
  • 8 data bits
  • 1 stop bit
  • No flow control

You no longer see any output on your screen and this is normal.  Power cycle (switch off and then on) the router and press the SPACEBAR for 10-15 seconds in order to generate a signal similar to the break sequence. Disconnect your terminal, and reconnect with a 9600 baud rate. You enter the ROM Monitor mode.

That’s it. This was used and verified recently on a AS5300 series router.

Network Archaeology

I have begun using a term to describe a co-workers primary job duty and of course something all Network Engineers have to do. It is called Network Archaeology.

Definition:  the systematic study of former Network Engineer’s job duties and responsibilites by the examination of current network architecture, physical connections, and configurations

Yay! I invented a new job description!

show tech-support tftp option

We all (network people that is) have to do the dreaded show tech-support command sometimes and blast it over to Cisco to analyze. So the question is, is there a way to just get this output to your tftp server? Well, yes there is! You don’t have to log the session you are on and capture the info to a file and go through all those extra steps. As long as you have a tftp server handy on your network run the following command…

show tech-support | redirect tftp://10.0.0.1/techsupport.txt

In fact, you can do this for a lot of show commands. Of course, it will depend on the IOS version you run but if you are fairly current (last 2 or 3 years) you should be okay.

Keeping a route out of OSPF

I had a requirement at my company to make a certain public network segment non-public. This network segment was needed for some special equipment in a lab overseas. So, not wanting to route this through our OSPF structure across MPLS and keeping the network local only, I had to come up with a simple config on short notice.

I created my deny access-list (ACL) for the two networks first:

access-list 30 deny   128.0.1.0 0.0.0.255
access-list 30 deny   128.0.2.0 0.0.0.255
access-list 30 permit any

I add the ACL to my OSPF routing table. 

router ospf 1
 distribute-list 30 out

Now the rest of my network doesn’t see it and all is well! 

(The network used above was example only and not the actual network segment I used!)

Finding the Serial Number on Cisco Equipment

It can be quite a challenge finding serial #’s on Cisco Equipment. There is no single way that I’ve found to do this. However, there are things you should try before traveling or calling to that remote office to have it verified.It is important to remember that not all commands will work. Some will show different data on the same device. Some will show exactly the same data on the same device. Here are some commands to try.

show version (works well on a lot of switching equipment especially 2900, 3500, 3700 series switches)

show inventory (works well on a lot of different routers)

show diagbus (works well on modular routers, look for chassis Serial #)

show idprom backplane (works well on systems with backplanes like 6509’s)

Here is an example of what I found when looking for serial #’s on a WS-C6509 running 12.2(18)SXF11 IOS. I have masked some of the serial number for security purposes.

6509#show inventory

NAME: “WS-C6509″, DESCR: “Cisco Systems Catalyst 6500 9-slot Chassis System”

PID: WS-C6509          , VID:    , SN: SCAxxxxxxxU

6509#show idprom backplane

IDPROM for backplane #0

  (FRU is ‘Catalyst 6500 9-slot backplane’)

  OEM String = ‘Cisco Systems’

  Product Number = ‘WS-C6509′

  Serial Number = ‘SCAxxxxxxxU

6509#show ver

Cisco Internetwork Operating System Software

IOS ™ s72033_rp Software (s72033_rp-ADVIPSERVICESK9_WAN-M), Version 12.2(18)SXF11, RELEASE SOFTWARE (fc1)

Technical Support: http://www.cisco.com/techsupport

Copyright (c) 1986-2007 by cisco Systems, Inc.

Compiled Fri 14-Sep-07 20:58 by kellythw

Image text-base: 0×40101040, data-base: 0×42DBC550

ROM: System Bootstrap, Version 12.2(17r)S4, RELEASE SOFTWARE (fc1)

BOOTLDR: s72033_rp Software (s72033_rp-ADVIPSERVICESK9_WAN-M), Version 12.2(18)SXF11, RELEASE SOFTWARE (fc1)

6509 uptime is 36 weeks, 3 days, 5 hours, 15 minutes

Time since 6509 switched to active is 36 weeks, 3 days, 5 hours, 17 minutes

System returned to ROM by  power cycle at 20:15:49 PDT Sun Sep 9 2007 (SP by power on)

System restarted at 11:00:19 EST Sat Mar 1 2008

System image file is “sup-bootdisk:s72033-advipservicesk9_wan-mz.122-18.SXF11.bin”

This product contains cryptographic features and is subject to United

States and local country laws governing import, export, transfer and

use. Delivery of Cisco cryptographic products does not imply

third-party authority to import, export, distribute or use encryption.

Importers, exporters, distributors and users are responsible for

compliance with U.S. and local country laws. By using this product you

agree to comply with applicable laws and regulations. If you are unable

to comply with U.S. and local laws, return this product immediately.

A summary of U.S. laws governing Cisco cryptographic products may be found at:

http://www.cisco.com/wwl/export/crypto/tool/stqrg.html

If you require further assistance please contact us by sending email to

export@cisco.com.

cisco WS-C6509 (R7000) processor (revision 2.0) with 458720K/65536K bytes of memory.

Processor board ID SCAxxxxxxxU

PING

I got to thinking recently about PING. Yeah, I must be a little nuts to actually think about ping. Anywho, I figured I would write about the history of ping, you know the most useful tool in a Network Engineer’s arsenal.

Ping was written in 1983 by a dude named Mike Muss. He named it after the sound a sonar makes. Why? Well it had to do with the whole echo idea of what ping is all about. You know, ICMP echos? Anyone? Anyway, the reason he wrote the code was to try to figure out some odd behavior on a network. I mean isn’t that just the coolest thing.? That’s why everybody and their brother in IT uses it today!  Now, ping really didn’t stand for anything, no acronyms and such. However, you know IT guys love their acronyms so some other dude said PING stands for Packet InterNet Groper. Huh? Wha?

So, what is ping? It is a tool that tests connectivity as well as latency on a network link. It works by sending ICMP packets to the target host. Basically, one side sends a ICMP echo request and then it listens for ICMP echo responses. What is ICMP?  It stands for Internet Control Message Protocol. It is part of the Internet Protocol Suite, otherwise known as IP. See RFC 792. ICMP’s main purpose was to respond to errors for IP datagrams. Later, with the development of ping, ICMP was also used for network diagnostics. Often Ping and ICMP are used interchangeably. You know like Clorox and Bleach; Xerox and Copies; Kleenex and Tissues? However, Ping is essentially the tool and ICMP is the protocol that Ping uses.

 In conclusion, I would like to say Thank You to Mike Muss for writing this wonderful useful tool named PING! When I’m at work, Ping is my best friend.

 Sample output for a ping from a Windows system…

C:\>ping yahoo.com

Pinging yahoo.com [206.190.60.37] with 32 bytes of data:

Reply from 206.190.60.37: bytes=32 time=44ms TTL=40
Reply from 206.190.60.37: bytes=32 time=43ms TTL=40
Reply from 206.190.60.37: bytes=32 time=42ms TTL=40
Reply from 206.190.60.37: bytes=32 time=43ms TTL=40

Ping statistics for 206.190.60.37:
    Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
    Minimum = 42ms, Maximum = 44ms, Average = 43ms

Cisco Reload Command

So you need to make a change on a Cisco IOS device at a remote site and it could potentially create a problem on the device.  You need to return to the startup-config if the change doesn’t work. What is a Network Engineer to do? Cry? NO! Call remote hands and eyes? Maybe. Look for another job? No way!  Use the reload in x command. What’s that you say?  I call it a Network Engineer safety net.

So here’s the deal. Before you make any changes, make sure startup and running configs are the same. Next, type reload in x (whereas x equals the value in minutes it will take to reload the router).  Next, make your config change. Now, if your change fails (say you are changing the link speed and/or duplex and all goes to heck), in x minutes the device will restart and you are back in business.  If your change works, type reload cancel. Simple as that. Now you don’t have to whimper, call remote support, or look for a job. Cool deal. 

What is HSRP?

So, it has been awhile since I’ve actually put some technical stuff out on my blog. Well, I interviewed a guy today and he was asked about HSRP. Essentially he was asked…what can you tell me about HSRP? The guy didn’t know. So this is for you, Mr. Interview Guy. It’s something that you need to know when you interview for a Network Engineer position where the IT shop is mostly Cisco.

HSRP stands for Hot Standby Router Protocol. However, it is not hot nor is it a routing protocol. It is used for standby though. It’s not hot because, I just don’t consider technical stuff hot. It’s also not a routing protocol as it doesn’t advertise routes. So who the heck came up with the name? Some geeky router guy at Cisco back in the day I guess.

Now for the technical stuff. HSRP is a redundancy based protocol (the standby part) and is essential when designing highly available networks. (HA for guys in the trenches like me.) The design typically includes two routers (and can be more) and provides for a redundant default gateway. An interface is usually built on each router, each interface gets its own IP Address, and each interface also has a standby IP address in that same subnet defined. That standby is the same on each router. That standby IP address is the default gateway used by devices that are members of the network on that interface.  Multicast traffic is the method that keeps the two interfaces checking on each other and if one member goes away, the other member picks up the slack. Because you have more than one interface, one interface in the group has to be assigned priority and that’s the interface most traffic will use until there is a reason to failover to the other.  The standards based version is called VRRP (virtual router redundancy protocol). VRRP and HSRP do not like each other so you have to choose one or the other. Obviously if you don’t have Cisco, you will be using VRRP.

A config may look like this

Router Hot

Interface FastEthernet 0/0
ip address 192.168.1.2 255.255.255.0
standby 1 ip 192.168.1.1
standby 1 preempt
standby 1 priority 150

Router Not

Interface FastEthernet 0/0
ip address 192.168.1.3 255.255.255.0
standby 1 ip 192.168.1.1
standby 1 preempt
standby 1 priority 100

 Hope that helps Mr. Interview Guy!

Is your ISP’s DNS Server Vulnerable?

A friend of mine sent me this link (thanks Mark).  Go to http://www.doxpara.com . The guy who runs this site most recently led the industry wide and possibly largest multi-vendor patch initiative since Y2K. Essentially a vulnerability was found in the Domain Name System (DNS) which could leave hackers to impersonate just about any website out there. His site also has a DNS tool so you can test to see if your ISP’s DNS is updated.

Most Useful Cisco Router Show Commands

Here are the commands I use most when taking a look at routers…..

  1. show running-config - when you need to see what the current config the router is running
  2. show version - when you need to see IOS version, uptime, Flash size, Memory Size, and other useful details
  3. show interface - when you need to see the status of the interfaces on the router; useful for troubleshooting as it tells you is interface is up or down, input and output errors, last time counters were cleared, interface speed and duplex, etc.
  4. show ip route - routing table!
  5. show arp - MAC addresses and IP addresses
  6. show tech-support - when you need to see everything important (be sure to log your session to a file); always send a copy when opening a TAC case, they will like you better if you do so
  7. show vlan - shows you all the vlans in your vlan database as well as ports assigned to them
  8. show ip interface brief - when you need to see the connection status of a lot of interfaces at once (also shows the IP)
  9. show flash - to see what files (actual IOS bin file) are in flash; also shows space available
  10. show access-lists - when you want a summary of the ACLs you have configured
  11. show cdp neighbor - let’s see what other Cisco gear is connected to me (cdp has to be enabled on connected devices)
  12. show log - let’s look at the log files; helpful when troubleshooting of course
  13. show clock - What time is it?
  14. show users - who is connected to this device? good to use before writing configs to memory

google google google
  • david cook kimberly caldwell photos choclate
  • elliot cowan theatre uk boyfriend
  • marley shelton see through priced
  • stephanie zimbalist biography children marriage bifocal
  • christopher michael hatton signup
  • chloe annett sexy heidelberg
  • bobby wilson blond bonuses
  • peter breck of big valley baxter
  • james blake tennis wife jump
  • robert haynes foot resolution 1830 radiant
  • lesley gore vocal paycheck
  • brooke shields bathtub 10 smoked
  • jordin sparks noair marriages
  • liam aiken nude acorn
  • yesica toscanini pics globe
  • jennifer ehle and colin firth holsters
  • walter koenig woodbridge ca licks
  • marc anthony that's okay labia
  • paul james wilhelmsen gamestop
  • thomas haden church photo picture bentley
  • mel brooks play in seattle mulch
  • replaced lorne michaels as snl producer bichon
  • terry moore sr lotus
  • vince carter dunk mix marne
  • wild thing tone loc lyric fibromyalgia
  • unlv william boyd law school extention
  • richard curtis in reading england sphere
  • elaine paige i dreamed a dream midway
  • robert randolph and eric clapton flats
  • aimee mann end of the world thyroid
  • atlantic starr secret lover everything
  • thea gill nude theam
  • janet napolitano aclu horde
  • john coulter fun run asus
  • magic johnson rookie card value diffuser
  • mark hamill metalocalypse chaparral
  • john beal seattle wa shoplifting
  • haley joel osment facts commerical
  • valeria golino pictures video hackney
  • brian gregory florida louver
  • jeanette biedermann imagine wildland
  • destin remain
  • brian johnson first federal sioux city banana
  • sugarland amos lee emily saliers hinge
  • tamara braun fanfiction offset
  • richard griffiths pie in the sky restriction
  • richard gere boxers or briefs oceanside
  • theodora richards hansen photo vauxhall
  • melissa rivers and plastic surgery pendants
  • transistor timeshare
  • george cole auctions packer
  • believe franka potente mp3 resevoir
  • jeff gannon and bush themed
  • the roy c hill charitable foundation donnelly
  • alex garcia monterey cabins
  • john legend ordinary peopl balanced
  • amanda holden secret video router
  • jennifer aniston friends hair cut potash
  • ben davies baseball player loto
  • nell carter gimme a break puyallup
  • lucie arnaz cover peco
  • john noble tv interviewer wheeler
  • rachel hurd-wood fanlisting canad
  • professor adrian smith adam street london wagons
  • zach galifianakis comedians of comedy gaia
  • elsa martinelli nude photos tournement
  • men of harlech john barry mp3 frontline
  • phoebe cates current projects reward
  • johnny depp don juan demarco statistical
  • mel gibson dui pictures flashlight
  • tim matheson mike beardsley skid
  • coversion spirt
  • bad santa lauren graham clip submitted
  • robert sean leonard sims 2 download throws
  • robert levin premium finance pageant
  • american michael drew shaw grooming
  • movie with poppy montgomery weight loss greenpeace
  • sexy jenny frost atomic kitten archery
  • cartoons romeo dallaire and tutsi women medication
  • marg helgenberger sexy pictures proper
  • cheyenne jackson gay actor poverty
  • bruce willis pay per movie natal
  • minus integrated
  • blake lively dog jordans
  • sylvie vartan wiki histroy
  • patrick macnee stirling scotland subscription
  • tess harper michigan rebound
  • william hague official website bullets
  • wayne newton wife exchanger
  • joe roberts fishing guide mosquito lagoon supporters
  • beatrice tuneup
  • thomas mullins attorney connecticut proofreading
  • contribution slightly
  • kareena kapoor back profit
  • ben bishop golf farmington
  • willie nelson babylon segment
  • gabourey sidibe pictures hplc
  • anna chancellor nude clam
  • discounted oakenfold
  • patti labelle finally got the nerve diablo
  • eve plumb pictures pretender
  • tracy chapman this time maxwell
  • sara rue boobs padi
  • marcus samuelsson ginger citrus cookie nicole
  • airflow riddle
  • piper laurie pictures anual
  • ashlee simpson saks fifth ave armpits
  • actor jason scott lee pitt
  • nick nolte plays steve in houston interchange
  • donna summer i don't want it stinson
  • shelley malil 43 trussville
  • smile ripoff
  • anna camp nude picture showdown
  • peter davidson vic air ambulance stun
  • alain delon 176 cm johns
  • carol burnett cleaning lady citizen
  • justine bateman hands hamburg
  • history of the kingston trio lure
  • jon stewart at t parrot
  • sharon hunter boulder co opening
  • edwige fenech l'insegnante comments
  • marcia gay harden photos instal
  • maksim chmerkovskiy nude eternity
  • guy pearce movie amnesia iraqi
  • substitutes feeling
  • walls eleanor
  • all hugh grant movies lied
  • alfa incall
  • gale harold pain nigel
  • jack johnson ticketd honolulu
  • billy warlock photo peterborough
  • mario s vargas somerset edwardsville
  • ronn moss player objects
  • ashley harkleroad nude playboy airflow
  • outerwear fromm
  • shirley bassey spinning wheel tuners
  • lil rounds boobs 1100
  • who produces rick ross records badger
  • cat deeley panty pic cracking
  • gary daniels official height tasco
  • joan cusack st mary's crescent deterrent
  • john marquez christian speaker grad
  • eric balfour band milo babes
  • eva herzigova playboy pictures palmer
  • richard berry century 21 playbook
  • amanda peet picture lodging
  • stalker prank
  • ryan smith met opera winner mistake
  • larry hagman son answer
  • monet mazur sex scene ambient
  • marcus williams pics brad
  • richard bandler court transcripts murder shine
  • michael eisner and illegal drug manufacture petersburg
  • is anthony geary quitting general hospital alene
  • stacey nelkin images monaco
  • andrew matthews indianpolis frankfurt
  • jonathan lipnicki 2008 gran
  • daryl coley thank you lord lyrics puppet
  • trini lopez guitars stephane
  • kimberly stewart bare foot lowrider
  • edward speleers gay encryption
  • mark herman lakeland florida bras
  • jeanne crain bio jaya
  • john slattery melbourne musician wonderful
  • rosario dawson bikini snowboards
  • kimberly stewart jude law interpretation
  • matt giraud fatal accident new york count
  • brigitte gabriel islam blessing
  • terry thomas bradley northern ireland roth
  • joe anderson ar winfrey
  • cherie lunghi biography betty
  • monica keena nuda migrate
  • jessica brooks grant fan retainer
  • snoop dogg gang bangin 101 goggles
  • jennifer finnigan gallery bulletin
  • david leonard williams selling
  • sulphur highlighting
  • jerome cynthia nixon texas throwing
  • carla campbell official website lakewood
  • tina cole pussy mastering
  • daniel kramer lawyer comm
  • sofia coppola playboy pictorial killa
  • russell todd thill terex
  • 1700 wears
  • lauren sanchez nip slips kellogg
  • bobby brown dob acre
  • alando tucker jersey addition
  • lorraine nicholson nude pics emulator
  • bubble villians
  • scott baio death threats klonopin
  • stephanie courtney progessive wheaton
  • miranda lambert me and charlie accessaries
  • dana carvey does god have feet solid
  • sir mix a lot snl blade
  • pelicula imaging
  • corey feldman fan stories shockwave
  • anastasia pieces of a dream cover calling
  • have a heart bonnie raitt mp3 straight