Link to home
Start Free TrialLog in
Avatar of Mr_Blob
Mr_Blob

asked on

Cisco 2600 Sample Subnet Configuration?

Hi:
I have a /25 block of ips which I'd like to subnet into two /26 blocks. I have a Cisco 2600 with 2 fastethernet ports in it. Can anyone provide me with the commands I'd need to take my 200.180.200.0 255.255.255.128, gateway 200.180.200.1 and turn it into 200.180.200.0 255.255.255.192, gateway 200.180.200.1 and 200.180.200.64 255.255.255.192, gateway 200.180.200.65?
Thanks in advance!
Avatar of qbakies
qbakies
Flag of United States of America image

CLI commands:

conf t
int f0/0
ip address 200.180.200.1 255.255.255.192
no shut
int f0/1
ip address 200.180.200.65 255.255.255.192
no shut
end
wr mem

Not sure what you mean by the 'gateway' addresses.  Those addresses you listed as the 'gateway' are the first usable IP address in the subnet so I assigned them to the interface.  This means you can use those IPs as the default gateway for other devices on that subnet.
Avatar of Mr_Blob
Mr_Blob

ASKER

Thanks for the quick reply!
I should have been more clear - this is our internet connection so one of the interfaces will be connected to the ISP & the other to a switch. Can I get the subnetting to happen in a similar fashion, like so?

conf t
int f0/0
no ip address
no shut
int f0/1
ip address 200.180.200.1 255.255.255.192
ip address 200.180.200.65 255.255.255.192 secondary
no shut
ip route 0.0.0.0 0.0.0.0 f0/0
end
wr mem

But I think 200.180.200.1 (our ISPs gateway) is already in use...
ASKER CERTIFIED SOLUTION
Avatar of qbakies
qbakies
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial