Monday, November 26, 2012
Sunday, September 30, 2012
How to remove caps/num lock notifications
Every time when I press Caps Lock or Num Lock on keyboard notification
balloon pop-up in right low corner of the screen that it’s been turned on/off.
It is annoying and it’s disabled me from typing for a couple of seconds. So I
decided to turned off, process responsible for notification is QLC Controller.
Sunday, September 9, 2012
How To Configure NTP on Cisco router - GNS3
Network Time Protocol (NTP)
is a networking protocol for clock synchronization between computer systems
over packet-switched, variable-latency data networks and it works on Application
Layer. The protocol uses the User Datagram Protocol (UDP) on port number 123.
I will configure router R1
to use NTP clock synchronization from 2.rs.pool.ntp.org, the source of server
from http://www.pool.ntp.org/ which is the largest virtual cluster of time servers.
So let's start.
First check time and date on
R1...
R1#show clock
*00:14:33.191 UTC Fri Mar 1
2002
Before we configure R1 to
use NTP first of all we need to configure name server and lookup for domain
name.
R1(config)#ip domain-lookup
R1(config)#ip name-server
4.2.2.2
Thursday, August 23, 2012
Advertise default route under OSPF
In this example I will explain where and how to advertise
default route under ospf process to send to other ospf routers.
From diagram you can see topology, it's not complex but is
good for this purpose.
First I will list configuration of router R1 and R2 and
configuration itself from both routers.
R1 is configured for:
- NAT overload
- Serial interface S1/0 as NAT inside with IP address
10.150.20.1/30, and interface on ISP direction with NAT outside with IP
received from ISP DHCP server.
- OSPF routing protocol advertising on interface S1/0 or
specific IP address 10.150.20.1/30
!
hostname R1
!
ip domain name lab.local
ip name-server 4.2.2.2
ip name-server 192.168.1.1
!
interface FastEthernet0/0
ip address dhcp
ip nat outside
duplex auto
speed auto
!
interface Serial1/0
ip address
10.150.20.1 255.255.255.252
ip nat inside
clock rate 64000
!
router ospf 1
network 10.150.20.1
0.0.0.0 area 0
!
!
ip nat inside source list NAT_ADDRESSES interface
FastEthernet0/0 overload
!
ip access-list standard NAT_ADDRESSES
permit 192.168.10.0
0.0.0.255
!
end
There is no command for static route because I received that
route from my Linksys which I'm using for access the Internet. Addition: I read that if interface which have enabled ip address dhcp router will automatically learn default route, which is case in this example.
S* 0.0.0.0/0 [254/0]
via 10.143.88.254 -- Linksys IP address
Saturday, June 16, 2012
Tips for the Cisco IOS alias commands
I read post on packetpushers.net about IOS Alias command and I found them very helpful. I tried them my self. Read the post first and then experiment, the sky is the limit ;)
Thursday, March 29, 2012
RSTP and Port Fast
How much
PortFast is actually fast? Well, let’s see.
For this
purpose I will use debug for spanning-tree to see how much it is take to make
interface in forwarding state.
SW_1#debug spanning-tree events
I choose
interface FastEthernet 1/10 on my SW_1, and I shutdown interface.
That
interface is in VLAN 1 and it is access port, because PortFast have to be configured
on access port only, not trunk port.
So let’s
make this interface UP/UP…
SW_1(config)#interface fastethernet 1/10
SW_1(config-if)#no shutdown
SW_1(config-if)#
*Mar 1
00:33:20.215: STP: VLAN1 Fa1/10 -> listening -- 15 sec forward delay
*Mar 1
00:33:35.231: STP: VLAN1 Fa1/10 -> learning -- 15 sec forward
delay
*Mar 1
00:33:50.255: STP: VLAN1 Fa1/10 -> forwarding
SW_1(config-if)#
Friday, February 10, 2012
Saturday, January 28, 2012
Configure Cisco router to be a DHCP server using CCP
As I promised in this blog I'm going to configure DHCP server for LAN clients.
First of all connect to you router with CCP, and from "Community Information" list select wich router you want to configure. After you discover device, click on "Configure".
To get to screen where you can see DHCP pools click...
Router => DHCP => DHCP Pools
A you can see I have already configured POOL_1, in this case I will edit my pool to see configurations.
To add new pool just click Add... button
First of all connect to you router with CCP, and from "Community Information" list select wich router you want to configure. After you discover device, click on "Configure".
To get to screen where you can see DHCP pools click...
Router => DHCP => DHCP Pools
A you can see I have already configured POOL_1, in this case I will edit my pool to see configurations.
To add new pool just click Add... button
Friday, January 20, 2012
Configure router to use the Cisco Configuration Professional
In this post I will configure router for CCP (Cisco Configuration Professional).
First of all you have to download CCP installation from Cisco http://www.cisco.com/go/ciscocp then install CCP like any windows application. After that configure router to be able to run CCP.
• Enable HTTP and HTTPS
• Configure HTTP for local authentication
• Create local user with privilege level 15
• VTY line with protocol ssh/telnet must be enabled with local authentication.
• And as I recently read in Cisco documentation, an http timeout policy must be configured with the parameters (ip http timeout-policy idle 60 life 86400 requests 10000) to avoid launch issue with Cisco CP.
Router> enable
Router#
Router# config terminal
Router(config)#
Router(config)# username ccpuser privilege 15 secret 0 ccppass
Router(config)# ip http server
First of all you have to download CCP installation from Cisco http://www.cisco.com/go/ciscocp then install CCP like any windows application. After that configure router to be able to run CCP.
• Enable HTTP and HTTPS
• Configure HTTP for local authentication
• Create local user with privilege level 15
• VTY line with protocol ssh/telnet must be enabled with local authentication.
• And as I recently read in Cisco documentation, an http timeout policy must be configured with the parameters (ip http timeout-policy idle 60 life 86400 requests 10000) to avoid launch issue with Cisco CP.
Router> enable
Router#
Router# config terminal
Router(config)#
Router(config)# username ccpuser privilege 15 secret 0 ccppass
Router(config)# ip http server
Subscribe to:
Posts (Atom)