Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

New to Cisco 1

Status
Not open for further replies.

hall5942

Vendor
May 7, 2002
377
US
I recently upgraded my ram to 16 Meg from 8. After do that i uploaded the new IOS. Now my ethernet connections will not connect to my laptop. I am not able to ping the router as well. it doesn't boot to the ROMMON 1> anymore and i can log into it via the console cable. What step did I miss

here is my config

sh config
Using 1215 out of 131072 bytes
!
version 12.4
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Portals
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$fXPJ$QnfawazhaXWhhu7WZissd/
enable password Try4nw57
!
no aaa new-model
!
resource policy
!
ip subnet-zero
no ip routing
no ip cef
--More--  !
!
!
!
!
!
!
!
!
!
interface FastEthernet0
no cdp enable
!
interface FastEthernet1
shutdown
no cdp enable
!
interface FastEthernet2
shutdown
no cdp enable
!
interface FastEthernet3
shutdown
--More--   no cdp enable
!
interface FastEthernet4
no ip address
no ip route-cache
shutdown
duplex auto
speed auto
no cdp enable
!
interface Dot11Radio0
no ip address
no ip route-cache
shutdown
speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
station-role root
no cdp enable
!
interface Vlan1
no ip address
no ip route-cache
shutdown
--More--  !
ip classless
!
no ip http server
no ip http secure-server
!
snmp-server community public RO
!
control-plane
!
!
line con 0
no modem enable
speed 115200
line aux 0
line vty 0 4
password Try4now57
login
!
scheduler max-task-time 5000
no process cpu extended
no process cpu autoprofile hog
end
 
3 of the 4 Ethernet interfaces are shutdown and none of them have been assigned an ip address.
 
How do i assign them a ip address? When I go to
Router#(config-if)ip FastEthernet 0 192.168.1.1 255.255.255.0 it says that i can't assign it an address.

Also, how do i start the interfaces F0-F3 back up?
 
Router#(config)interface FastEthernet0
Router#(config-if)ip address 192.168.1.1 255.255.255.0
Router#(config-if)no shutdown


Repeat the same for your other interfaces.
 
when i get to the Router#(Config-if)ip address 192.168.1.1 255.255.255.0
I get the following error

% IP address can not be configured on L2 links

any suggestions?
 
you need to enter this command:
ip routing

right now ip routing is disabled

I hate all Uppercase... I don't want my groups to seem angry at me all the time! =)
- ColdFlame (vbscript forum)
 
Router#(config)ip routing

but it still show no ip routing. here is my config

sh config
Using 1215 out of 131072 bytes
!
version 12.4
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
no service password-encryption
!
hostname Portals
!
boot-start-marker
boot-end-marker
!
enable secret 5 $1$fXPJ$QnfawazhaXWhhu7WZissd/
enable password Try4nw57
!
no aaa new-model
!
resource policy
!
ip subnet-zero
no ip routing
no ip cef

!
!
!
!
interface FastEthernet0
no cdp enable
!
interface FastEthernet1
shutdown
no cdp enable
!
interface FastEthernet2
shutdown
no cdp enable
!
interface FastEthernet3
shutdown
no cdp enable
!
interface FastEthernet4
no ip address
no ip route-cache
shutdown
duplex auto
speed auto
no cdp enable
!
interface Dot11Radio0
no ip address
no ip route-cache
shutdown
speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
station-role root
no cdp enable
!
interface Vlan1
no ip address
no ip route-cache
shutdown
!
ip classless
!
no ip http server
no ip http secure-server
!
snmp-server community public RO
!
control-plane
!
!
line con 0
no modem enable
speed 115200
line aux 0
line vty 0 4
password Try4now57
login
!
scheduler max-task-time 5000
no process cpu extended
no process cpu autoprofile hog
end

Router#
 
Hello
The Fa1-Fa4 are layer two interfaces only (a built-in switch).The Vlan 1 is the your layer 3 LAN interface that routes for devices plug into those 4 ports.So configure your IP address under VLAN1.
Fastethernet 0 is your WAN interface.

To start the switch ports:

Router#(config)interface FastEthernet1
Router#(config-if)no shutdown

Regards
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top