Add documentation on CISCO CLI.

This commit is contained in:
Nicolás A. Ortega Froysa 2022-04-08 15:21:17 +02:00
parent 766fd9b749
commit 33b8369652

57
1/PAR/notes/pt-docs.md Normal file
View File

@ -0,0 +1,57 @@
# PacketTracer Docs (Documentación PT)
## Configuración Propio Switch/Router
### Hostname
```
hostname <nombre>
```
### Contraseña
```
enable secret <password>
username <usuario> privilege 1 password 0 <password>
```
## VLANs
```
vlan <id>
name <name>
```
### Enlaces de Acceso
```
# para una sola interfaz
int <if>
# para un rango de interfaces
int <if>-<if>
switchport access vlan <id>
```
### Enlaces Troncales
```
int <if>
switchport mode trunk
```
### Asignar IP a VLAN
```
int vlan <id>
```
## DHCP
```
ip dhcp pool <name>
network <ip-net> <mask-net>
default-router <ip>
dns-server <ip>
ip dhcp excluded-address <low-ip> <high-ip>
```