Hallo,
Probleem : Onmogelijk verbinding met @work ( met linux )
We hebben het al geprobeert met smoothwall, en met isdn4k elk zonder resultaat. Terwijl er wel een verbinding opstand kan worden gebracht met andere providers. Ik heb alle dingen geprobeert die op dit forum vermeldt staan , alle zonder resultaat. Is er iemand die het wel gelukt is onder linux in te bellen op @ work?
Hieronder zie je een ifconfig copy van ippp0.
De ***** bevat in het originele script wel de juiste informatie hoor !
Ik hoop dat ik voldoende informatie geplaatst heb ! b.v.d The-Matrix
ippp0 Link encap:Point-to-Point Protocol
inet addr:0.0.0.1 P-t-P:0.0.0.1 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MTU:1500 Metric:1
RX packets:5 errors:0 dropped:0 overruns:0 frame:0
TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:30
RX bytes:128 (128.0 b) TX bytes:128 (128.0 b)
Probleem : Onmogelijk verbinding met @work ( met linux )
We hebben het al geprobeert met smoothwall, en met isdn4k elk zonder resultaat. Terwijl er wel een verbinding opstand kan worden gebracht met andere providers. Ik heb alle dingen geprobeert die op dit forum vermeldt staan , alle zonder resultaat. Is er iemand die het wel gelukt is onder linux in te bellen op @ work?
Hieronder zie je een ifconfig copy van ippp0.
De ***** bevat in het originele script wel de juiste informatie hoor !
ippp0 Link encap:Point-to-Point Protocol
inet addr:0.0.0.1 P-t-P:0.0.0.1 Mask:255.255.255.255
UP POINTOPOINT RUNNING NOARP MTU:1500 Metric:1
RX packets:5 errors:0 dropped:0 overruns:0 frame:0
TX packets:6 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:30
RX bytes:128 (128.0 b) TX bytes:128 (128.0 b)
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
| #!/bin/sh
# i4l.conf Configuration file for isdn subsystem
ISDNCTRL=/sbin/isdnctrl
IFCONFIG=/sbin/ifconfig
ROUTE=/sbin/route
IPPPD=/sbin/ipppd
MODPROBE=/sbin/modprobe
HISAXCTRL=/sbin/hisaxctrl
ISDNLOG=/sbin/isdnlog
# Data for XS4ALL.NL
PROV1_MSN=0676060606 # Provider's MSN
# Local configuration data
DYN_IP=YES # Change to NO in case of static IP
MY_MSN=594****** # Without leading zero
# Do not set this to 0.0.0.0 if you also have a LAN
#NAME="Username@isdnwork.nl" # XS4ALL username
STARTLOG=NO # Set to YES if you want to start isdnlog
DOD=NO # Change to YES if you want Dial-On-Demand
# Set $DIALMODE to 'auto' if you set this to YES
# IPPP0 configuration - No need to change this!
IF0=ippp0 # Interface name
HUPTO=180 # Hang-up-timeout for $IF0
SECURE=on # Security
L2_PROT=hdlc # level 2 protocol
L3_PROT=trans # level 3 protocol
ENCAP=syncppp # syncppp or rawip (Leave this to syncppp for XS4ALL)
BINDNAME=0 # Name to $IF0 is bound to
DIALMODE=manual # Configures DialOnDemand
# 'manual' does NOT automaticly disconnect
# HUPTO won't do a thing
# When set to 'auto', set $DOD to 'YES' |