- Community Home
- >
- Networking
- >
- Switching and Routing
- >
- HPE Aruba Networking & ProVision-based
- >
- Re: VLAN Routing Tagged and Untagged (Newbie)
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2012 07:56 AM
11-14-2012 07:56 AM
Greetings All
I am fairly new to the world of VLAN, and I'm curious if a scenario would work.
I have ProCurve 6600 series switches.
I have multiple VLANs in play, but for this particular scenario, I'm dealing with 10 and 20.
On one end, I have a server that is:
not tagged with a VLAN
plugged into port 1 that is untagged 10
has an IP address of 192.168.1.1
On the other end I have a server that is:
tagged 20,
plugeed into port 2 that is tagged 20
has an IP address of 192.168.2.1
Both servers have an explict route that allows them to talk with one another (assuming they were on the same VLAN)
If I were to simply tag port 1 with VLAN 20, would the routing between the two work?
My gut says no, because the traffic from the untagged server would be tagged with a VLAN of 10 once the traffic hit the switch.
My coworker says that since the port is both untagged 10 and tagged 20 that the traffic would be tagged appropriately based on the network the traffic is destined for.
Solved! Go to Solution.
- Tags:
- VLAN
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2012 08:27 AM - edited 11-14-2012 08:28 AM
11-14-2012 08:27 AM - edited 11-14-2012 08:28 AM
SolutionYou coworker are wrong, or maybe it was bad wording ;). If the port is untagged vlan 10 and tagged vlan 20 that means that incoming untagged packets will be accepted and put in VLAN 10 internally in the switch. Incoming tagged packets must have dot1q tag 20 or they will be discarded.
Pretty much the same on outgoing packets; outgoing packets from VLAN10 will egress the port without a tag, and packets in VLAN20 will keep its tag 20.
CCIE Service Provider
MASE Network Infrastructure [2011]
H3CSE
CCNP R&S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2012 08:39 AM
11-14-2012 08:39 AM
Re: VLAN Routing Tagged and Untagged (Newbie)
That what I was thinking. So, inorder to get the routing to work, we would use a command like the following to enable routing between the two VLANs on the switch?
ip routing
vlan 10
ip address 192.168.1.0/24
vlan 20
ip address 192.168.2.0/24
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2012 08:43 AM
11-14-2012 08:43 AM
Re: VLAN Routing Tagged and Untagged (Newbie)
Yep, and configure the IPs of the 6600 as default gateway of the servers/clients.
CCIE Service Provider
MASE Network Infrastructure [2011]
H3CSE
CCNP R&S
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-14-2012 08:47 AM
11-14-2012 08:47 AM
Re: VLAN Routing Tagged and Untagged (Newbie)
Perfect. Thank you much for the help.