How To Configure Vlan Ip Address On Cisco Switch?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
1. Assign an IP address to the VLAN interface:
# configure terminal
# interface vlan <vlan_ID>
# ip address <IP_address> <subnet_mask>
# no shutdown
2. Configure the default gateway:
# configure terminal
# ip route 0.0.0.0 0.0.0.0 <default_gateway_IP>
3. Enable IP routing on the switch:
# configure terminal
# ip routing
4. Save the configurations:
# copy running–config startup–config