Moblie

Thursday, June 25, 2009

IPS 4215 in ROMMON Mode

Press Ctrl-R while this message is displayed to display the ROMMON menu. The console display resembles the following:

CISCO SYSTEMS IDS-4215
Embedded BIOS Version 5.1.3 17/6/03 12:24:54.32
Compiled by ciscouser
Evaluating Run Options ...

Cisco ROMMON (1.2) #0: Sun June 12 12:24:58 MDT 2003
Platform IDS-4215
0: i8255X @ PCI(bus:0 dev:13 irq:11)
1: i8255X @ PCI(bus:0 dev:14 irq:11)
Using 1: i82557 @ PCI(bus:0 dev:14 irq:11), MAC: 0000.c0fa.ee02
Use ? for help.

rommon>

Friday, June 19, 2009

Management interfaces on IPS

IDS-4210 ------> FastEthernet0/1
IDS-4215 ------> FastEthernet0/0
IDS-4235 ------> GigabitEthernet0/1
IDS-4250 ------> GigabitEthernet0/1
IPS-4240 ------> Management0/0
IPS-4255 ------> Management0/0
IPS-4260 ------> Management0/0
NM-CIDS ------> FastEthernet0/0
AIP-SSM-10 ------> GigabitEthernet0/0
AIP-SSM-20 ------> GigabitEthernet0/0
IDSM-2 ------> GigabitEthernet0/2

Tuesday, June 9, 2009

Port Security on Switch

The port security standard configuration on switch. Its the Industry standard configuration on switches. The port will block or disable if any broadcast happen in the Local Area Network..

Example of switch configuration in LAN .
******************** Switch Config ******************
conf t
interface FastEthernet0/1
description **** CONNECTED TO ROUTER ****
!
interface FastEthernet0/2
switchport mode access
spanning-tree portfast
spanning-tree bpduguard enable
description **** CONNECTED TO XYZ SERVER ****
switchport port-security violation protect
storm-control broadcast level 50.50
storm-control multicast level 50.50
!
interface range FastEthernet0/2 - 23
switchport mode access
spanning-tree portfast
spanning-tree bpduguard enable
switchport port-security violation protect
storm-control broadcast level 50.50
storm-control multicast level 50.50
!
interface FastEthernet0/24
description **** CONNECTED TO Switch 2****
switchport port-security violation protect
udld port aggressive
switchport mode trunk
spanning-tree guard loop

!
end
*************************************************************