WiiHealthy.com posted a great article on how to lose weight by the means of Wii Sports. They broke it down sport by sport and even included some tips so you don’t get bored as fast. Definately worth a read.
Topics: Gaming | Give Your Two Cents »
ca zeroize rsa
ca gen rsa key 512
show ca mypubkey rsa
ca save all
ssh 0 0 outside
ssh timeout 60
Topics: Cisco, Technology | Give Your Two Cents »
Here’s some handy commands to log changes to your switches and routers via the local log and syslog:
archive
log config
logging enable
logging size 200
hidekeys
notify syslog
To view it back:
show archive log config provisioning– this actually parses the command into a config that can be copied and pasted in.
Topics: Cisco, Technology | Give Your Two Cents »
Here’s some basic commands that every Cisco Engineer should know. However, they are so basic, that they are often overlooked:
Disable DNS Lookup
no ip domain-lookup
——————————-
Disable Switches/ Routers from being rude
line con 0
logging synchronous
If you are in the middle of typing something, the device will echo your command back to you once it’s done spitting it’s garbage out.
——————————-
setting console speed
line con 0
speed 115200
——————————-
command replacements:
wr---copy run start
wr erase---erase start
who---show users
where---show sessions
——————————-
Timestamping your logs
service timestamps log datetime localtime
——————————-
setting the clock
clock set 1:59:00 2 May 2007
clock timezone EST -5
clock summer-time EDT recurring
——————————-
Erasing interface config info
default int gig0/1
——————————-
fast debug recovery
u all
——————————-
Editing access-lists
Make sure that you are using an extended access list for this one
Router(config)#ip access-list extended TEST
Router(config-ext-nacl)#10 permit ip host 10.1.1.1 host 10.6.5.4
Router(config-ext-nacl)#20 permit icmp any any
Router(config-ext-nacl)#30 permit tcp any host 10.1.1.1
Router(config-std-nacl)#15 permit ip 10.5.5.0 0.0.0.255 any
Router#show access-list TEST
10 permit ip host 10.1.1.1 host 10.6.5.4
15 permit ip 10.5.5.0 0.0.0.255 any
20 permit icmp any any
30 permit tcp any host 10.1.1.1
Topics: Cisco, Technology | Give Your Two Cents »
Here’s a link to a pretty daunting PDF that Cisco put out about their own IPT implementation. Reader beware, this is definately not for the faint of heart.
http://www.cisco.com/web/about/ciscoitatwork/downloads/ciscoitatwork/pdf/cisco_ip_telephony.pdf
Topics: Cisco, Technology | Give Your Two Cents »
This is a set of instructions that someone had posted to install CallManager on hardware other than their “certified” equipment for testing.
Step 1: Download a Windows utility called FDIMAGE.EXE. You can find this on pretty much any UNIX/ Linux site.
Step 2: Insert the CallManager Hardware Detect CD-ROM into the system
Step 3: Insert a blank floppy disk
Step 4: Open up a DOS window and type fdimage d:\bootimg.bin a:. This will copy the boot image from the Hardware detect CD-ROM to the floppy.
Step 5: On the floppy, edit the autoexec.bat file and change the following:
locate sssksys.ini
add:set XIMAGE=x345
goto IBMx345
Step 6: Reboot and make sure the a: is setup as yoru boot drive. Also ensure the CD is still in there.
Step 7: Everything after this is business as usual.
Topics: Cisco, Technology | Give Your Two Cents »
Here’s a few commands that are helpful if you are configuring numerous ports for hosts.
spanning-tree portfast default
This command automatically sets any port configured as an access port (non-trunking) to the correct mode.
switchport host
switchport mode will be set to access
spanning-tree portfast will be enabled
channel group will be disabled
Topics: Cisco, Technology | Give Your Two Cents »
Found this handy command within Cisco docs. It especially comes in handy on bloated 6500’s, however, it doesn’t matter if you don’t put descriptions on your interfaces and vlan’s.
show interface description
or
sh int desc
Topics: Cisco, Technology | Give Your Two Cents »
Next Entries »