https://www.cnblogs.com/chengmo/archive/2010/10/22/1858302.html
linux 设备里面有个比较特殊的文件:
/dev/[tcp|upd]/host/port 只要读取或者写入这个文件,相当于系统会尝试连接:host 这台机器,对应port端口。如果主机以及端口存在,就建立一个socket 连接。将在,/proc/self/fd目录下面,有对应的文件出现。
一、测试下:/dev/tcp/host/post文件
123456789101112131415161718192021222324252627[chengmo@centos5 shell]$
cat
<
/dev/tcp/127
.0.0.1
/22
SSH-2.0-OpenSSH_5.1
#我的机器shell端口是:22
#实际:/dev/tcp根本没有这个目录,这是属于特殊设备
[chengmo@centos5 shell]$
cat
<
/dev/tcp/127
.0.0.1
/223
-
bash
: connect: 拒绝连接
-
bash
:
/dev/tcp/127
.0.0.1
/223
: 拒绝连接
#223接口不存在,打开失败
[chengmo@centos5 shell]$
exec
8<>
/dev/tcp/127
.0.0.1
/22
[chengmo@centos5 shell]$
ls
-l
/proc/self/fd/
总计 0
lrwx------ 1 chengmo chengmo 64 10-21 23:05 0 ->
/dev/pts/0
lrwx------ 1 chengmo chengmo 64 10-21 23:05 1 ->
/dev/pts/0
lrwx------ 1 chengmo chengmo 64 10-21 23:05 2 ->
/dev/pts/0
lr-x------ 1 chengmo chengmo 64 10-21 23:05 3 ->
/proc/22185/fd
lrwx------ 1 chengmo chengmo 64 10-21 23:05 8 -> socket:[15067661]
#文件描述符8,已经打开一个socket通讯通道,这个是一个可以读写socket通道,因为用:"<>"打开
[chengmo@centos5 shell]$
exec
8>&-
#关闭通道
[chengmo@centos5 shell]$
ls
-l
/proc/self/fd/
总计 0
lrwx------ 1 chengmo chengmo 64 10-21 23:08 0 ->
/dev/pts/0
lrwx------ 1 chengmo chengmo 64 10-21 23:08 1 ->
/dev/pts/0
lrwx------ 1 chengmo chengmo 64 10-21 23:08 2 ->
/dev/pts/0
lr-x------ 1 chengmo chengmo 64 10-21 23:08 3 ->
/proc/22234/fd
从时间服务器读取时间:[chengmo@centos5 html]$ cat</dev/tcp/time-b.nist.gov/1355491 10-10-22 11:33:49 17 0 0 596.3 UTC(NIST) *上面这条语句使用重定向输入语句就可以了。
没有评论:
发表评论