Link to home
Start Free TrialLog in
Avatar of isdirect
isdirectFlag for United States of America

asked on

Bad Subnet Configuration on my Cisco 3750?

I have a 24-port Cisco 3750 switch that has been configured by a 3rd-party consultant who is no longer available to me, so I need help understanding and correcting this problem...

First, I will describe the current configuration to the best of my ability:  The switch is configured with one VLAN (the default).  The switch is on IP address 192.168.0.1, and it is configured as the default gateway for the 192.168.0.0 subnet (let's call it "Subnet A") on my in-house network.  Port 3 on the switch is configured as the router for "Subnet B" (192.168.10.0), also in-house.  Clients in Subnet B (10.0) are configured to use 192.168.10.1 (port 3) as their default gateway.  The only reason we created Subnet B was to add available IP addresses; at the time, we did not have a need to isolate traffic between the subnets.

The PROBLEM is that all Subnet B clients are required to uplink to the 3750 switch via Port 3.   For some reason, I cannot connect Subnet B clients to any other port on the switch and have communication with Subnet A.  Is this supposed to be the case?  What can I do to allow the two subnets to communicate with each other from any port on the switch?

It seems to me that the consultant should have created VLANS instead of setting one port to be a router for one of the subnets, but this is NOT my area of expertise.

I am fast approaching the need to isolate traffic from other subnets, so this problem is critical to me.  Thanks for any help you can provide!
ASKER CERTIFIED SOLUTION
Avatar of Don Johnston
Don Johnston
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
You can have multiple ports in the same vlan.

int f0/x
  switchport
  switchport mode access vlan  50
  ! or whatever subnet B's vlan should be
  ! repeat the config for each port

int vlan 50 ! or whatever B's vlan should be
 ip address 192.168.10.1

If you can't get into the switch because you don't know the passwords, do password recovery:

http://www.cisco.com/en/US/products/hw/switches/ps628/products_password_recovery09186a0080094184.shtml
Avatar of isdirect

ASKER

Obviously, the accepted solution isn't really a "solution" so much as it's an "explanation."  There doesn't seem to be a way to do what I want to do.