workbaby 发表于 2012-2-3 21:28:13

kzyfl 发表于 2012-1-7 23:47 static/image/common/back.gif
楼主如查开发成PHP版纯网页的用户管理系统,我相信会更火

正在写了。因为自己不会html排版,目前只把后台和功能写出来。
找到做美工的人后再美化

蛋散 发表于 2012-2-3 23:18:43

php 模拟telnet登陆实现操作的吧。
有现成代码:<?
error_reporting(-1);

class Telnet {
var $sock = NULL;

function telnet($host,$port) {
$this->sock = fsockopen($host,$port);
socket_set_timeout($this->sock,2,0);
}

function close() {
if ($this->sock)fclose($this->sock);
$this->sock = NULL;
}

function write($buffer) {
$buffer = str_replace(chr(255),chr(255).chr(255),$buffer);
fwrite($this->sock,$buffer);
}

function getc() {
return fgetc($this->sock);
}

function read_till($what) {
$buf = '';
while (1) {
   $IAC = chr(255);
   
   $DONT = chr(254);
   $DO = chr(253);
   
   $WONT = chr(252);
   $WILL = chr(251);
   
   $theNULL = chr(0);

   $c = $this->getc();
   
   if ($c === false) return $buf;
   if ($c == $theNULL) {
    continue;
   }

   if ($c == "1") {
    continue;
   }

   if ($c != $IAC) {
    $buf .= $c;

    if ($what == (substr($buf,strlen($buf)-strlen($what)))) {
   return $buf;
    }
    else {
   continue;
    }
   }

   $c = $this->getc();
   
   if ($c == $IAC) {
   $buf .= $c;
   }
   else if (($c == $DO) || ($c == $DONT)) {
    $opt = $this->getc();
    // echo "we wont ".ord($opt)."\n";
    fwrite($this->sock,$IAC.$WONT.$opt);
   }
   elseif (($c == $WILL) || ($c == $WONT)) {
    $opt = $this->getc();
    // echo "we dont ".ord($opt)."\n";
    fwrite($this->sock,$IAC.$DONT.$opt);
   }
   else {
    // echo "where are we? c=".ord($c)."\n";
   }
}
}
}

#/$telnet = new telnet("192.168.0.1",23);
#/echo $telnet->read_till("login: ");
#/$tn->write("kongxx\r\n");
#/echo $telnet->read_till("password: ");
#/$tn->write("KONGXX\r\n");
#/echo $telnet->read_till(":> ");
#/$tn->write("ls\r\n");
#/echo $telnet->read_till(":> ");
#/echo $telnet->close();

?>

蛋散 发表于 2012-2-3 23:19:50

蛋散 发表于 2012-2-3 23:18 static/image/common/back.gif
php 模拟telnet登陆实现操作的吧。
有现成代码:

可靠性不知道怎么样。:lol

hu089 发表于 2012-2-4 09:18:53

这个工具不错,挺实用的啊,没铜板

twtysse 发表于 2012-2-15 15:00:45

好贵,但还是下载试试。

ietele 发表于 2012-2-15 22:17:08

很不错,支持支持

星空之云 发表于 2012-2-23 13:58:43

什么时候能够出1.0呢!!:lol

catksmu1 发表于 2012-4-11 12:56:41

支持,顶顶顶

catksmu1 发表于 2012-4-11 13:33:27

不错不错使用试试

xmzm23 发表于 2012-4-11 17:21:25

:):):):):):victory::victory::victory:

snowguest 发表于 2012-4-11 21:30:51

高人哪。一直在关注这个管理呢。

saiyejiayong 发表于 2012-4-13 00:52:58

钱啊~~~就是没钱!

eduto 发表于 2012-5-22 07:35:21

能够支持ros 5.16的版本吗

hx99 发表于 2012-5-22 20:25:46

支持一下 顶了

chinaboy240 发表于 2012-5-23 17:13:57

真是一个好东西啊
页: 1 2 3 4 5 [6] 7 8
查看完整版本: 一直在写的pppoe用户管理软件更新至0.96版