Server IP : 103.119.228.120 / Your IP : 18.219.18.238 Web Server : Apache System : Linux v8.techscape8.com 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64 User : nobody ( 99) PHP Version : 5.6.40 Disable Function : shell_exec,symlink,system,exec,proc_get_status,proc_nice,proc_terminate,define_syslog_variables,syslog,openlog,closelog,escapeshellcmd,passthru,ocinum cols,ini_alter,leak,listen,chgrp,apache_note,apache_setenv,debugger_on,debugger_off,ftp_exec,dl,dll,myshellexec,proc_open,socket_bind,proc_close,escapeshellarg,parse_ini_filepopen,fpassthru,exec,passthru,escapeshellarg,escapeshellcmd,proc_close,proc_open,ini_alter,popen,show_source,proc_nice,proc_terminate,proc_get_status,proc_close,pfsockopen,leak,apache_child_terminate,posix_kill,posix_mkfifo,posix_setpgid,posix_setsid,posix_setuid,dl,symlink,shell_exec,system,dl,passthru,escapeshellarg,escapeshellcmd,myshellexec,c99_buff_prepare,c99_sess_put,fpassthru,getdisfunc,fx29exec,fx29exec2,is_windows,disp_freespace,fx29sh_getupdate,fx29_buff_prepare,fx29_sess_put,fx29shexit,fx29fsearch,fx29ftpbrutecheck,fx29sh_tools,fx29sh_about,milw0rm,imagez,sh_name,myshellexec,checkproxyhost,dosyayicek,c99_buff_prepare,c99_sess_put,c99getsource,c99sh_getupdate,c99fsearch,c99shexit,view_perms,posix_getpwuid,posix_getgrgid,posix_kill,parse_perms,parsesort,view_perms_color,set_encoder_input,ls_setcheckboxall,ls_reverse_all,rsg_read,rsg_glob,selfURL,dispsecinfo,unix2DosTime,addFile,system,get_users,view_size,DirFiles,DirFilesWide,DirPrintHTMLHeaders,GetFilesTotal,GetTitles,GetTimeTotal,GetMatchesCount,GetFileMatchesCount,GetResultFiles,fs_copy_dir,fs_copy_obj,fs_move_dir,fs_move_obj,fs_rmdir,SearchText,getmicrotime MySQL : ON | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /usr/share/doc/ppp-2.4.5/scripts/ |
Upload File : |
#!/bin/sh # # A sample script to establish PPP session(s) via rsh # # Adi Masputra <adi.masputra@sun.com> # Jan 24, 2000 # # # You'd definitely want to change the following addresses to suit # your network configuration # LOC_IP=10.0.0.1 REM_IP=10.0.0.2 NETMASK=255.255.0.0 export LOC_IP REM_IP # # This is the remote peer where in.rshd is running, either # its hostname or IP address # PPPD_RHOST=myremotehost # # For this example, we assume that pppd on both local and remote # machines reside in the same place, /usr/local/bin/pppd # PPPD_LOC=/usr/sbin/pppd # # The location of local options file (where rsh client is running). # Note that the sample options file included in the distribution # may need further customizations, depending on your needs. The 'noauth' # option specified in the file is there to simplify the example. In # reality, you'd probably want to remove such option. # PPPD_LOC_OPT=/etc/ppp/options-rsh-loc # # The location of remote options file (where in.rshd daemon is running). # Note that the sample options file included in the distribution # may need further customizations, depending on your needs. The 'noauth' # option specified in the file is there to simplify the example. In # reality, you'd probably want to remove such option. Also note that # the remote options file need to include the 'notty' option for this # to work # PPPD_REM_OPT=/etc/ppp/options-rsh-rem # # The location of rsh client on the local machine # RSH_LOC=/bin/rsh export PPPD_LOC PPPD_LOC_OPT PPPD_REM_OPT PPPD_RHOST RSH_LOC # # Uncomment the following to enable IPv6, note that the IPv6 support # needs to be enabled during compilation # # PPPD_IPV6='+ipv6 ipv6cp-use-ipaddr' export PPPD_IPV6 # # And execute pppd with the pty option, specifying rsh client as the # slave side of the pseduo-tty master/slave pair. # exec $PPPD_LOC \ pty '$RSH_LOC $PPPD_RHOST $PPPD_LOC $REM_IP:$LOC_IP $PPPD_IPV6 file $PPPD_REM_OPT' \ $LOC_IP:$REM_IP netmask $NETMASK $PPPD_IPV6 file $PPPD_LOC_OPT