blob: 2d8ecb5051921d266d75fc92b0e407d198685dbe (
plain)
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
|
configure terminal
!
hostname RouterA
!
enable secret class
!
ip subnet-zero
!
no ip domain-lookup
!
interface Ethernet0
description To-Host
ip address 10.0.1.1 255.255.255.0
no shutdown
!
interface Serial0
description To-RouterB
encapsulation frame-relay
! //Wechsel zu Subinterface
int s0.101 point-to-point
frame-relay interface-dlci 101
no shutdown
ip address 192.168.1.34 255.255.255.252
no shutdown
!
ip classless
ip route 10.0.2.0 255.255.255.0 s0.101
!
!
line con 0
password cisco
logging synchronous
login
transport input none
line aux 0
line vty 0 4
password cisco
logging synchronous
login
!
end
!
|