diff --git "a/13\351\237\251\347\224\263\347\220\246/20240510.md" "b/13\351\237\251\347\224\263\347\220\246/20240510.md" new file mode 100644 index 0000000000000000000000000000000000000000..db12382e5f19c3dc383bd1f4d3c5377ae7859b3e --- /dev/null +++ "b/13\351\237\251\347\224\263\347\220\246/20240510.md" @@ -0,0 +1,7 @@ +## 初识三层交换机 + +- ip routing 开启路由功能:作用让不同网段的ip互通,全局模式下 + +- no switchport 开启端口的三层功能:作用是让二层端口变成三层端口,使其可以绑定IP [这个命令要求先进入对应的端口]int f 0/1 + +- switchport trunk encapsulation dot1q:将trunk模式先封装成dot1q协议模式。才可以设置turnk,接口模式 \ No newline at end of file diff --git "a/13\351\237\251\347\224\263\347\220\246/20240511.md" "b/13\351\237\251\347\224\263\347\220\246/20240511.md" new file mode 100644 index 0000000000000000000000000000000000000000..54dd0ba98beaaa43dfcdd6b46c8089c3da899f76 --- /dev/null +++ "b/13\351\237\251\347\224\263\347\220\246/20240511.md" @@ -0,0 +1,41 @@ +### 三层交换机与二层交换机 + +``` +三层交换机: +Switch>en +Switch#conf t +Switch(config)#int f 0/1 +Switch(config-if)#switchport trunk encapsulation dot1q +Switch(config-if)#switchport mode trunk +Switch(config-if)#vlan 10 +Switch(config-vlan)#vlan 20 +Switch(config-if)#ip routing +Switch(config)#int vlan 10 +Switch(config-if)#ip add 192.168.10.254 255.255.255.0 +Switch(config-if)#no shut +Switch(config-if)#int vlan 20 +Switch(config-if)#ip add 192.168.20.254 255.255.255.0 +Switch(config-if)#no shut +Switch(config-if)#int f 0/2 +Switch(config-if)#switchport access vlan 10 +Switch(config-if)#int vlan 10 +Switch(config-if)#ip add 192.168.10.254 255.255.255.0 +``` + + + +``` +二层交换机: +Switch>en +Switch#conf t +Switch(config)#vlan 10 +Switch(config-vlan)#vlan 20 +Switch(config-vlan)#int f 0/1 +Switch(config-if)#switchport access vlan 10 +Switch(config-if)#int f 0/2 +Switch(config-if)#switchport access vlan 20 +Switch(config-if)#int f 0/3 +Switch(config-if)#switchport mode trunk +``` + + diff --git "a/img/\345\261\217\345\271\225\346\210\252\345\233\276 2024-05-13 231943.png" "b/img/\345\261\217\345\271\225\346\210\252\345\233\276 2024-05-13 231943.png" new file mode 100644 index 0000000000000000000000000000000000000000..1115d133f38670dacbf71e0cf2d8f005b3b89f2a Binary files /dev/null and "b/img/\345\261\217\345\271\225\346\210\252\345\233\276 2024-05-13 231943.png" differ