Assigning a single switchport to different VLANs












5















I've been trying to figure out how to achieve the outcome below.



VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
232 VLAN 10 active Fa3/0/1,Fa3/0/2,Fa3/0/3,Fa3/0/4,
Fa3/0/5,Fa3/0/14,Fa3/0/15,

233 VLAN 20 active Fa3/0/1, Fa3/0/2, Fa3/0/3,
Fa3/0/4, Fa3/0/5,Fa3/0/17,
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup


In short, trying to assign two VLANs to a single switchport in access mode. How is this possible?










share|improve this question









New contributor




Samson Oduor is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • The correct question would be what are you trying to achive with such configuration? Without knowing more about the real problem, it is unlikely to be answered. The solution proposed above is wrong.

    – Zenon Nalepa
    yesterday
















5















I've been trying to figure out how to achieve the outcome below.



VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
232 VLAN 10 active Fa3/0/1,Fa3/0/2,Fa3/0/3,Fa3/0/4,
Fa3/0/5,Fa3/0/14,Fa3/0/15,

233 VLAN 20 active Fa3/0/1, Fa3/0/2, Fa3/0/3,
Fa3/0/4, Fa3/0/5,Fa3/0/17,
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup


In short, trying to assign two VLANs to a single switchport in access mode. How is this possible?










share|improve this question









New contributor




Samson Oduor is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • The correct question would be what are you trying to achive with such configuration? Without knowing more about the real problem, it is unlikely to be answered. The solution proposed above is wrong.

    – Zenon Nalepa
    yesterday














5












5








5








I've been trying to figure out how to achieve the outcome below.



VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
232 VLAN 10 active Fa3/0/1,Fa3/0/2,Fa3/0/3,Fa3/0/4,
Fa3/0/5,Fa3/0/14,Fa3/0/15,

233 VLAN 20 active Fa3/0/1, Fa3/0/2, Fa3/0/3,
Fa3/0/4, Fa3/0/5,Fa3/0/17,
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup


In short, trying to assign two VLANs to a single switchport in access mode. How is this possible?










share|improve this question









New contributor




Samson Oduor is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I've been trying to figure out how to achieve the outcome below.



VLAN Name                             Status    Ports
---- -------------------------------- --------- -------------------------------
232 VLAN 10 active Fa3/0/1,Fa3/0/2,Fa3/0/3,Fa3/0/4,
Fa3/0/5,Fa3/0/14,Fa3/0/15,

233 VLAN 20 active Fa3/0/1, Fa3/0/2, Fa3/0/3,
Fa3/0/4, Fa3/0/5,Fa3/0/17,
1002 fddi-default act/unsup
1003 token-ring-default act/unsup
1004 fddinet-default act/unsup
1005 trnet-default act/unsup


In short, trying to assign two VLANs to a single switchport in access mode. How is this possible?







cisco switch vlan trunk network-access






share|improve this question









New contributor




Samson Oduor is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




Samson Oduor is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 2 days ago









Cown

6,63331031




6,63331031






New contributor




Samson Oduor is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 2 days ago









Samson OduorSamson Oduor

263




263




New contributor




Samson Oduor is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





Samson Oduor is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






Samson Oduor is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • The correct question would be what are you trying to achive with such configuration? Without knowing more about the real problem, it is unlikely to be answered. The solution proposed above is wrong.

    – Zenon Nalepa
    yesterday



















  • The correct question would be what are you trying to achive with such configuration? Without knowing more about the real problem, it is unlikely to be answered. The solution proposed above is wrong.

    – Zenon Nalepa
    yesterday

















The correct question would be what are you trying to achive with such configuration? Without knowing more about the real problem, it is unlikely to be answered. The solution proposed above is wrong.

– Zenon Nalepa
yesterday





The correct question would be what are you trying to achive with such configuration? Without knowing more about the real problem, it is unlikely to be answered. The solution proposed above is wrong.

– Zenon Nalepa
yesterday










1 Answer
1






active

oldest

votes


















6














First of all an access port is by definition can only carry one Vlan.



Voice vlan is used, when if its actually a voice vlan traffic needed to be carried.



so lets say both vlans 232 and 233 are Data Vlans.



You have to apply like below.



interface Fa3/0/1,
switchport mode trunk
switchport trunk allowed vlan 232,233
end


Now , Trunk mode is used carry multiple vlans (Vlan tagging).



If you don't specify the "allowed vlan" by default all the vlans created on the switch will be tagged on this interface.



And if the vlan 233 is voice vlan (used to connect IPphones).



Please ask if any clarifications needed.



Regards,
Hazif Ismail






share|improve this answer










New contributor




HAZIF ISMAIL is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Feel free to add the remaining from my previous answer.

    – Cown
    2 days ago











Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "496"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






Samson Oduor is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fnetworkengineering.stackexchange.com%2fquestions%2f57725%2fassigning-a-single-switchport-to-different-vlans%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









6














First of all an access port is by definition can only carry one Vlan.



Voice vlan is used, when if its actually a voice vlan traffic needed to be carried.



so lets say both vlans 232 and 233 are Data Vlans.



You have to apply like below.



interface Fa3/0/1,
switchport mode trunk
switchport trunk allowed vlan 232,233
end


Now , Trunk mode is used carry multiple vlans (Vlan tagging).



If you don't specify the "allowed vlan" by default all the vlans created on the switch will be tagged on this interface.



And if the vlan 233 is voice vlan (used to connect IPphones).



Please ask if any clarifications needed.



Regards,
Hazif Ismail






share|improve this answer










New contributor




HAZIF ISMAIL is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Feel free to add the remaining from my previous answer.

    – Cown
    2 days ago
















6














First of all an access port is by definition can only carry one Vlan.



Voice vlan is used, when if its actually a voice vlan traffic needed to be carried.



so lets say both vlans 232 and 233 are Data Vlans.



You have to apply like below.



interface Fa3/0/1,
switchport mode trunk
switchport trunk allowed vlan 232,233
end


Now , Trunk mode is used carry multiple vlans (Vlan tagging).



If you don't specify the "allowed vlan" by default all the vlans created on the switch will be tagged on this interface.



And if the vlan 233 is voice vlan (used to connect IPphones).



Please ask if any clarifications needed.



Regards,
Hazif Ismail






share|improve this answer










New contributor




HAZIF ISMAIL is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Feel free to add the remaining from my previous answer.

    – Cown
    2 days ago














6












6








6







First of all an access port is by definition can only carry one Vlan.



Voice vlan is used, when if its actually a voice vlan traffic needed to be carried.



so lets say both vlans 232 and 233 are Data Vlans.



You have to apply like below.



interface Fa3/0/1,
switchport mode trunk
switchport trunk allowed vlan 232,233
end


Now , Trunk mode is used carry multiple vlans (Vlan tagging).



If you don't specify the "allowed vlan" by default all the vlans created on the switch will be tagged on this interface.



And if the vlan 233 is voice vlan (used to connect IPphones).



Please ask if any clarifications needed.



Regards,
Hazif Ismail






share|improve this answer










New contributor




HAZIF ISMAIL is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.










First of all an access port is by definition can only carry one Vlan.



Voice vlan is used, when if its actually a voice vlan traffic needed to be carried.



so lets say both vlans 232 and 233 are Data Vlans.



You have to apply like below.



interface Fa3/0/1,
switchport mode trunk
switchport trunk allowed vlan 232,233
end


Now , Trunk mode is used carry multiple vlans (Vlan tagging).



If you don't specify the "allowed vlan" by default all the vlans created on the switch will be tagged on this interface.



And if the vlan 233 is voice vlan (used to connect IPphones).



Please ask if any clarifications needed.



Regards,
Hazif Ismail







share|improve this answer










New contributor




HAZIF ISMAIL is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this answer



share|improve this answer








edited 2 days ago









Cown

6,63331031




6,63331031






New contributor




HAZIF ISMAIL is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









answered 2 days ago









HAZIF ISMAILHAZIF ISMAIL

612




612




New contributor




HAZIF ISMAIL is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





HAZIF ISMAIL is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






HAZIF ISMAIL is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • Feel free to add the remaining from my previous answer.

    – Cown
    2 days ago



















  • Feel free to add the remaining from my previous answer.

    – Cown
    2 days ago

















Feel free to add the remaining from my previous answer.

– Cown
2 days ago





Feel free to add the remaining from my previous answer.

– Cown
2 days ago










Samson Oduor is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















Samson Oduor is a new contributor. Be nice, and check out our Code of Conduct.













Samson Oduor is a new contributor. Be nice, and check out our Code of Conduct.












Samson Oduor is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Network Engineering Stack Exchange!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fnetworkengineering.stackexchange.com%2fquestions%2f57725%2fassigning-a-single-switchport-to-different-vlans%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Plaza Victoria

Brian Clough

Cáceres