Assigning an IP Address to a Switch

From Peter Pap's Technowiki
Revision as of 03:43, 21 September 2010 by Ppapa (talk | contribs) (Created page with "1. Select the default VLAN interface config t interface Vlan1 2. Assign an appropriate IP and enable the interface ip address 192.168.X.X 255.255.255.0 no shutdown...")

(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

1. Select the default VLAN interface

  config t
  interface Vlan1

2. Assign an appropriate IP and enable the interface

  ip address 192.168.X.X 255.255.255.0
  no shutdown
  exit

3. Set the default gateway

  ip default-gateway 192.168.11.1
  exit


NOTE: If ports are using a different VLAN, for instance VLAN5, then you will have to create new VLAN interface and assign the IP to it to make this work.