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.217.105
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 PPP_ON_BOOT=/etc/ppp/ppp_on_boot case "$1" in -*) echo " Usage: pon [provider] [arguments] If pon is invoked without arguments, $PPP_ON_BOOT file will be run, presuming it exists and is executable. Otherwise, a PPP connection will be started using settings from /etc/ppp/peers/provider. If you specify one argument, a PPP connection will be started using settings from the appropriate file in the /etc/ppp/peers/ directory, and any additional arguments supplied will be passed as extra arguments to pppd. " exit 0 ;; esac if [ -z "$1" -a -x "$PPP_ON_BOOT" ]; then exec "$PPP_ON_BOOT" fi if [ -z "$1" -a ! -f /etc/ppp/peers/provider ]; then echo " Please configure /etc/ppp/peers/provider or use a command line argument to use another file in /etc/ppp/peers/ directory. " exit 1 fi if [ "$1" -a ! -f "/etc/ppp/peers/$1" ]; then echo " The file /etc/ppp/peers/$1 does not exist. " exit 1 fi exec /usr/sbin/pppd call ${@:-provider}