Linux tsuru-no-tsurugi 5.15.0-186-generic #196-Ubuntu SMP Sat Jun 20 16:09:34 UTC 2026 x86_64
Apache/2.4.52 (Ubuntu)
Server IP : 192.168.0.18 & Your IP : 216.73.216.68
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
doc /
ppp /
examples /
scripts /
Delete
Unzip
Name
Size
Permission
Date
Action
chatchat
[ DIR ]
drwxr-xr-x
2024-08-21 22:52
README
6.63
KB
-rw-r--r--
2022-02-25 02:14
autopppd
5.69
KB
-rw-r--r--
2022-02-24 00:12
callback
2.25
KB
-rwxr-xr-x
2021-01-05 08:06
chat-callback
2.73
KB
-rw-r--r--
2021-01-05 08:06
ip-down.local.add
548
B
-rw-r--r--
2021-01-05 08:06
ip-up.local.add
729
B
-rw-r--r--
2021-01-05 08:06
ipv6-down.sample
609
B
-rw-r--r--
2021-01-05 08:06
ipv6-up.sample
815
B
-rw-r--r--
2021-01-05 08:06
options-rsh-loc
86
B
-rw-r--r--
2021-01-05 08:06
options-rsh-rem
92
B
-rw-r--r--
2021-01-05 08:06
options-ssh-loc
86
B
-rw-r--r--
2021-01-05 08:06
options-ssh-rem
92
B
-rw-r--r--
2021-01-05 08:06
plog
146
B
-rw-r--r--
2021-01-05 08:06
poff
2.72
KB
-rw-r--r--
2021-01-05 08:06
pon
970
B
-rw-r--r--
2021-01-05 08:06
pon.1
3.52
KB
-rw-r--r--
2021-01-05 08:06
ppp-off
967
B
-rwxr-xr-x
2021-01-05 08:06
ppp-on
1.6
KB
-rwxr-xr-x
2021-01-05 08:06
ppp-on-dialer
397
B
-rwxr-xr-x
2021-01-05 08:06
ppp-on-rsh
1.98
KB
-rwxr-xr-x
2021-01-05 08:06
ppp-on-ssh
2.26
KB
-rwxr-xr-x
2021-01-05 08:06
redialer
2.31
KB
-rwxr-xr-x
2022-02-25 02:14
secure-card
2.32
KB
-rwxr-xr-x
2021-01-05 08:06
Save
Rename
#!/bin/sh # # Script to initiate a ppp connection. This is the first part of the # pair of scripts. This is not a secure pair of scripts as the codes # are visible with the 'ps' command. However, it is simple. # # These are the parameters. Change as needed. TELEPHONE=555-1212 # The telephone number for the connection ACCOUNT=george # The account name for logon (as in 'George Burns') PASSWORD=gracie # The password for this account (and 'Gracie Allen') LOCAL_IP=0.0.0.0 # Local IP address if known. Dynamic = 0.0.0.0 REMOTE_IP=0.0.0.0 # Remote IP address if desired. Normally 0.0.0.0 NETMASK=255.255.255.0 # The proper netmask if needed # # Export them so that they will be available at 'ppp-on-dialer' time. export TELEPHONE ACCOUNT PASSWORD # # This is the location of the script which dials the phone and logs # in. Please use the absolute file name as the $PATH variable is not # used on the connect option. (To do so on a 'root' account would be # a security hole so don't ask.) # DIALER_SCRIPT=/etc/ppp/ppp-on-dialer # # Initiate the connection # # I put most of the common options on this command. Please, don't # forget the 'lock' option or some programs such as mgetty will not # work. The asyncmap and escape will permit the PPP link to work with # a telnet or rlogin connection. You are welcome to make any changes # as desired. Don't use the 'defaultroute' option if you currently # have a default route to an ethernet gateway. # exec /usr/sbin/pppd debug lock modem crtscts /dev/ttyS0 38400 \ asyncmap 20A0000 escape FF kdebug 0 $LOCAL_IP:$REMOTE_IP \ noipdefault netmask $NETMASK defaultroute connect $DIALER_SCRIPT