Hi Matt,
if you want to use the C2 as a layer 2 switch, with all routing on the Cisco 887, you do not need to have any
router configuration on the C2. In fact in that case you should delete all router configuration from the switch.
You would just create the five VLANs, configure the trunk link, set the host vlan to 10, and add the management IP address. If you are routing from/to the management VLAN, you need to set a default gateway as well (I have used 10.1.1.1 as default gateway in the following example).
clear vlan egress 1 *.*.* set vlan create 10,20,30,40,50 set vlan egress 10,20,30,40,50 ge.1.1 tagged set host vlan 10 set ip address 10.1.1.25 mask 255.255.255.0 gateway 10.1.1.1 You might want to take a look at
How to configure IP address / Subnet Mask / Default Gateway on SecureStack.
If the management VLAN 10 is untagged you need to modify the configuration as follows:
set port vlan ge.1.1 10 modify-egress set vlan egress 20,30,40,50 ge.1.1 taggedOn the other hand, if you want to use the C2 as a router, you should not configure a host IP address at all (
clear ip address) and use the
router configuration (the part that looks like a Cisco IOS configuration) for all IP addresses on the switch.
Thanks,
Erik