-
Notifications
You must be signed in to change notification settings - Fork 1
/
RouterConfig
67 lines (56 loc) · 888 Bytes
/
RouterConfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
---WIS HUIDIGE CONFIG---
enable
erase startup-config
reload
---CONFIG NAAM---
enable
config terminal
hostname router 0
---DESCRIPTION---
enable
configure terminal
interface "interfacenaam"
description hier de discription
end
---PASSWORD_ENABLE_MODE---
enable
conf(igure) t(erminal)
service password-encryption
enable password cisco
---IPV4_CONFIG---
enable
conf t
interface G0/0
ip address 172.17.. 255.255.
no shutdown
---DISABLE DNSLOOKUP---
enable
conf t
interface G0/0
no ip-domain lookup
---CONSOLE PASSWORD---
conf t
line con 0
password ""
login
end
---TELNET PASSWORD---
conf t
line vty 0 4
username "" password ""
login local
end
---IPV6 CONFIG---
enable
conf t
interface ...
ipv6 address ipv6-prefix/prefix-length eui-64
exit
ipv6 unicast-routing
---LOOPBACK---
enable
conf t
interface loopback0
ip address ... 255...
---save!!!---
copy running-config startup-config