Posted: . At: 12:30 PM. This was 9 years ago. Post ID: 8181
Page permalink. WordPress uses cookies, or tiny pieces of information stored on your computer, to verify who you are. There are cookies for logged in users and for commenters.
These cookies expire two weeks after they are set.


Adding an IP address to the management interface for a Cisco switch.


Adding an IP address to the management interface of a Cisco switch allows connection over an Ethernet connection to manage the switch configuration.

Firstly, switch to privileged exec mode.

tyrion>en
tyrion#

Then enter the configure terminal command to configure terminal settings.

tyrion#configure terminal

Now we are configuring settings for vlan 99.

tyrion(config)#interface vlan 99

Now enter the appropriate IP address settings.

tyrion(config-if)#ip address 192.168.99.1 255.255.255.0
tyrion(config-if)#no shutdown
tyrion(config-if)#end
tyrion#

Then copy the running config to the startup config.

tyrion#copy running-config startup-config 
Destination filename [startup-config]? 
Building configuration...
[OK]
tyrion#

Now the management interface has an IP address.


Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.