Options

help with lab

clarkarwtxclarkarwtx Registered Users Posts: 2 ■□□□□□□□□□
5. Set IP address of interface Fastethernet 0/0 to
be the first address of network 10.0.0.0/30


RanetA#enable
RanetA#show ip interface
FastEthernet0/0 is administratively down, line protocol is down (disabled)
Internet protocol processing disabled
FastEthernet0/1 is administratively down, line protocol is down (disabled)
Internet protocol processing disabled
Vlan1 is administratively down, line protocol is down

RanetA#configure terminal
Enter configuration commands, one per line. End with CNTL/Z.
RanetA(config)#interface fastethernet 0/0
RanetA(config-if)#ip address 10.0.0.0/30
^
% Invalid input detected at '^' marker.

maybe i am just over looking something really simple but any help would be very greatfull cause i have no clue whati am doing wrong

Comments

  • Options
    pastiebpastieb Member Posts: 5 ■□□□□□□□□□
    on my hardware i have to enter the subnet mask as decimal,eg 255.255.255.252- as opposed to the cidr notation /30.
    Hope this helps
  • Options
    DyasisDyasis Member Posts: 97 ■■□□□□□□□□
    Yeah, there is only a few areas in the IOS where you can use CIDR
  • Options
    clarkarwtxclarkarwtx Registered Users Posts: 2 ■□□□□□□□□□
    thank you i will give it a shot see what happens
  • Options
    arrogantbastardarrogantbastard Member Posts: 61 ■■□□□□□□□□
    10.0.0.0 is not the first usable ip in that network which would be a separate error, but the main problem is that that is not the correct way to enter a netmask in ios, dotted decimal format is what it's looking for
  • Options
    mendysuemendysue Member Posts: 22 ■■■□□□□□□□
    10.0.0.0/30 will have a network address of 10.0.0.0 -not usable on an interface, 10.0.0.1, 10.0.0.2 and a broadcast address of 10.0.0.3-also unuseable.
  • Options
    RouteMyPacketRouteMyPacket Member Posts: 1,104
    mendysue wrote: »
    10.0.0.0/30 will have a network address of 10.0.0.0 -not usable on an interface, 10.0.0.1, 10.0.0.2 and a broadcast address of 10.0.0.3-also unuseable.

    Using this fine gentlemans breakdown, configure it like this

    RanetA(config-if)#ip address 10.0.0.1 255.255.255.252

    Tada!
    Modularity and Design Simplicity:

    Think of the 2:00 a.m. test—if you were awakened in the
    middle of the night because of a network problem and had to figure out the
    traffic flows in your network while you were half asleep, could you do it?
Sign In or Register to comment.