Link to home
Start Free TrialLog in
Avatar of Ian Price
Ian PriceFlag for United Kingdom of Great Britain and Northern Ireland

asked on

How do I configure a 2948G switch - Assign VLan1 ip number and set SNMP up ?

Hi...
We have a 2948G switch I am trying to configure it but the command seem differ from the old 2950 we replace it with.

I need to know how do I configure  a 2948G switch - Assign VLan1 ip number and set SNMP up ?
ASKER CERTIFIED SOLUTION
Avatar of francrl
francrl

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
Avatar of logic2
logic2

hello
as per cisco you need to configure the BVI1 interface to manage the switch
check the below links from cisco they have config examples

http://www.cisco.com/en/US/products/hw/switches/ps672/products_tech_note09186a0080093f8f.shtml
http://www.cisco.com/en/US/products/hw/switches/ps672/products_tech_note09186a0080093dca.shtml#l3

2948G-L3(config)#bridge 1 route ip

!--- The bridge number route ip command configures an IP address on the BVI
!--- so you can Telnet into the router.
 
2948G-L3(config)#interface bvi 1
2948G-L3(config-if)#ip address 10.1.1.1 255.255.255.0
Avatar of Ian Price

ASKER

Thanks for the reply I set the snmp no problem but the vlan won't work - I get unknown interface vlan1 ? see below copy from the console screen on the switch...

Console> (enable) set interface vlan1 10.44.0.101
unknown interface vlan1
Console> (enable) set interface ?
  me1                        Set me1 interface
  sc0                        Set sc0 interface
  sl0                        Set sl0 interface
  trap                       Set interface trap
Console> (enable) set interface
Ok apparently sc0 is vlan1 so I set the command as follows...

set interface sc0 10.44.0.101/24

I now need to know how I set up the line vty 0 4 for telnet ?
Ok telnet is set...

set ip permit 172.16.0.0 255.255.0.0 telnet

Awarding points to francrl
Found the infor I needed in the link provided..