Add documentation on CISCO CLI.
This commit is contained in:
parent
766fd9b749
commit
33b8369652
57
1/PAR/notes/pt-docs.md
Normal file
57
1/PAR/notes/pt-docs.md
Normal 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>
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user