Killer270
killer270   Singapore
 
 
death awaits.
Не в сети
Витрина иллюстраций
itachi mid 1
Комментарии
CodeDF 27 окт. 2023 г. в 9:49 
lol u really plug in round 1
小月光M1kasa· 27 июн. 2023 г. в 1:59 
💚💚💚💚/>  フ💚💚💚💚
     |  _  _|
     /`ミ _x 彡
     /      |
    /  ヽ   ノ
 / ̄|   | | |
 | ( ̄ヽ__ヽ_)_)
 \二つ加我兄弟
Zignify 8 июн. 2023 г. в 11:42 
+rep Insane Player
OMGkawaiiAngel-chan 21 мая. 2023 г. в 6:08 
just a kawaii japanese schoolgirl .^ and I love to play VIDYA GAMEZ!!! sumtims I can be really RANDUM :3 I love <3 animu and mango and it helps me get through rough times like when my favorite animu or mango ends!!!! THATS THE WORSE-desu!!! if u want to play any games with me just ask because I LOVE to just hang out and if anyone wants an imouto or onee chan, don't be nervous to ask :P
p.s. thigh highs are the way into my heart <3
Very Mindful Very Demure 15 мая. 2023 г. в 7:10 
In this configuration, we:

• Create VLANs 10 and 20 on Switch1
• Configure access ports on FastEthernet0/1 and FastEthernet0/2 to be members of VLANs 10 and 20, respectively
• Configure GigabitEthernet0/1 as a trunk port, allowing traffic for VLANs 10 and 20 to be carried between Switch1 and Switch2
Note that we also configure Switch2 with similar VLAN and trunk port configurations, so that traffic can be exchanged between the switches for the VLANs that are allowed on the trunk link.

With this configuration, PC1 and PC2 will be able to communicate with each other, even though they are connected to separate switches. The VLAN tags on the trunk link allow Switch1 and Switch2 to differentiate between traffic for VLAN 10 and traffic for VLAN 20, and forward it to the appropriate destination.

I hope that helps!
Very Mindful Very Demure 15 мая. 2023 г. в 7:09 
Good evening, Killer, as requested here's an example configuration for router on a stick using Cisco IOS:

Switch1(config)# interface GigabitEthernet0/1
Switch1(config-if)# switchport mode trunk
Switch1(config-if)# switchport trunk allowed vlan 10,20
Switch1(config-if)# exit
Switch1(config)# interface GigabitEthernet0/1.10
Switch1(config-subif)# encapsulation dot1Q 10
Switch1(config-subif)# ip address 10.0.10.1 255.255.255.0
Switch1(config-subif)# exit
Switch1(config)# interface GigabitEthernet0/1.20
Switch1(config-subif)# encapsulation dot1Q 20
Switch1(config-subif)# ip address 10.0.20.1 255.255.255.0
Switch1(config-subif)# exit
Switch1(config)# exit