| If my commands are correct the below should give you the WAN  port on EVERY port of the switch (aka plug your local network into any  port)   except for those ports that you use the interface command on to  change over to handle bbhn traffic.  Cisco switches are nice, but they take a lot of knowledge to understand in, I suggest research what each of these command s do to understand what your being asked to setup.
 #Enables administrative modeenable
 <you may have to enter a password here>
 
 #Setup the vlan database:
 vlan database
 vlan 10 name "BBHN Network"
 vlan 2 name "BBHN DTDLINK"
 exit
 
 #Enable configuration mode
 conf t
 # Assuming Interface 23 on module 0 is what you want to configure to be the port the BBHN node plugs into: -- puts the interface into a trunking mode.
 
 interface FastEthernet0/23
 switchport trunk encapsulation dot1q
 switchport mode trunk
 switchport trunk native vlan 10
 # repeat the above for each bbhn port changing the number to to the correct interface # You can add a vlan 11,12,13 etc if you want to get advanced to have the "lan" port of each device on its own vlan if you need to mix and match but this is another subject. 
 exit exit #save the configuration to the startup config so when you reboot the switch it sticks around
 copy running-config startup-config
 
 * DISCLAIMER * I have not tested the above commands -- Any configuration is at your own risk. 
 |