Beste mede netwerkers!
Ik heb nu een cisco adsl2+ modem waarop ik probeer dhcp en adsl over bbned (tweakdsl) werkend te krijgen, ik krijg nu een ip op de BVI1 interface van bbned en de dhcp server werkt ook. Alleen vanaf mijn lan is internettoegang niet mogelijk, op de router zelf kan ik wel pingen/traceroutes doen met succes.
Ziet iemand waar de fout(en) liggen, alvast enorm enorm veel bedankt!
Ik heb nu een cisco adsl2+ modem waarop ik probeer dhcp en adsl over bbned (tweakdsl) werkend te krijgen, ik krijg nu een ip op de BVI1 interface van bbned en de dhcp server werkt ook. Alleen vanaf mijn lan is internettoegang niet mogelijk, op de router zelf kan ik wel pingen/traceroutes doen met succes.
Ziet iemand waar de fout(en) liggen, alvast enorm enorm veel bedankt!
code:
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
| version 12.4
no service pad
service timestamps debug datetime msec
service timestamps log datetime msec
service password-encryption
!
hostname Router
!
boot-start-marker
boot-end-marker
!
logging message-counter syslog
logging buffered 51200 warnings
no logging console
enable password 7 xxxx
!
aaa new-model
!
!
aaa authentication login CISCO local
!
!
aaa session-id common
clock timezone asd 1
!
crypto pki trustpoint TP-self-signed-1366612229
enrollment selfsigned
subject-name cn=IOS-Self-Signed-Certificate-1366612229
revocation-check none
rsakeypair TP-self-signed-1366612229
!
!
crypto pki certificate chain TP-self-signed-1366612229
certificate self-signed 01
quit
dot11 syslog
ip source-route
!
!
ip dhcp excluded-address 192.168.1.1 192.168.1.20
!
ip dhcp pool DHCP
network 192.168.1.0 255.255.255.0
dns-server 217.19.16.131 217.19.16.132
default-router 192.168.100.254
lease 0 0 15
!
!
ip cef
no ip domain lookup
ip domain name tweakdsl.nl
ip name-server 217.19.16.131
ip name-server 217.19.16.132
no ipv6 cef
!
multilink bundle-name authenticated
!
!
!
username xxx privilege 15 password 7 xxx
!
!
!
archive
log config
hidekeys
!
!
!
bridge irb
!
!
interface ATM0
no ip address
ip accounting output-packets
load-interval 30
no atm ilmi-keepalive
pvc 0/35
encapsulation aal5snap
!
bundle-enable
bridge-group 1
bridge-group 1 spanning-disabled
!
interface FastEthernet0
!
interface FastEthernet1
!
interface FastEthernet2
!
interface FastEthernet3
!
interface Dot11Radio0
no ip address
shutdown
speed basic-1.0 basic-2.0 basic-5.5 6.0 9.0 basic-11.0 12.0 18.0 24.0 36.0 48.0 54.0
station-role root
!
interface Vlan1
ip address 192.168.1.1 255.255.255.0
ip nat inside
ip virtual-reassembly
!
interface BVI1
mac-address adab.bad6.bac9
ip address dhcp
ip access-group bvi_in in
ip accounting output-packets
ip nat outside
ip virtual-reassembly
hold-queue 224 in
!
ip forward-protocol nd
ip route 0.0.0.0 0.0.0.0 BVI1
no ip http server
ip http authentication local
no ip http secure-server
ip http timeout-policy idle 600 life 86400 requests 10000
!
!
ip nat inside source list 1 interface BVI1 overload
ip nat inside source list 100 interface BVI1 overload
!
ip access-list extended bvi_in
permit udp any eq bootps host 255.255.255.255 eq bootpc
permit udp any eq ntp any eq ntp
deny tcp any any lt 1023 log-input
deny udp any any lt 1023 log-input
permit tcp any any
permit ip any any
!
access-list 1 permit 192.168.100.0 0.0.0.255
access-list 100 permit ip 192.168.200.0 0.0.0.255 any
access-list 100 permit udp 192.168.200.0 0.0.0.255 any
access-list 100 permit icmp 192.168.200.0 0.0.0.255 any
!
!
!
!
!
control-plane
!
bridge 1 protocol ieee
bridge 1 route ip
bridge 1 address 001c.b1ec.6548 discard
!
line con 0
login authentication CISCO
no modem enable
stopbits 1
line aux 0
login authentication CISCO
stopbits 1
line vty 0 4
privilege level 15
password 7 01201255510512053444
login authentication CISCO
transport input telnet ssh
!
scheduler max-task-time 5000
sntp server 198.123.30.132
end |