linux shell 脚本实现tcp/upd协议通讯(重定向应用)

时间:2021-05-22

前几天发了重定向以及管道相关使用方法,今天这里发些很有趣的例子。通过重定向实现基于tcp/udp协议的软件通讯。

linux 设备里面有个比较特殊的文件:

/dev/[tcp|upd]/host/port 只要读取或者写入这个文件,相当于系统会尝试连接:host 这台机器,对应port端口。如果主机以及端口存在,就建立一个socket 连接。将在,/proc/self/fd目录下面,有对应的文件出现。

一、测试下:/dev/tcp/host/post文件

[chengmo@centos5 shell]$ cat</dev/tcp/127.0.0.1/22SSH-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/总计 0lrwx------ 1 chengmo chengmo 64 10-21 23:05 0 -> /dev/pts/0lrwx------ 1 chengmo chengmo 64 10-21 23:05 1 -> /dev/pts/0lrwx------ 1 chengmo chengmo 64 10-21 23:05 2 -> /dev/pts/0lr-x------ 1 chengmo chengmo 64 10-21 23:05 3 -> /proc/22185/fdlrwx------ 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/总计 0lrwx------ 1 chengmo chengmo 64 10-21 23:08 0 -> /dev/pts/0lrwx------ 1 chengmo chengmo 64 10-21 23:08 1 -> /dev/pts/0lrwx------ 1 chengmo chengmo 64 10-21 23:08 2 -> /dev/pts/0lr-x------ 1 chengmo chengmo 64 10-21 23:08 3 -> /proc/22234/fd

从时间服务器读取时间:

[chengmo@centos5 html]$ cat</dev/tcp/time-b.nist.gov/13

55491 10-10-22 11:33:49 17 0 0 596.3 UTC(NIST) *

上面这条语句使用重定向输入语句就可以了。

二、通过重定向读取远程web服务器头信息

#!/bin/sh #testhttphead.sh#实现通过主机名,端口读取web 服务器header信息#copyright chengmo,qq:8292669if(($#<2));thenecho "usage:$0 host port";exit 1;fi#如果参数缺失,退出程序,返回状态1exec 6<>/dev/tcp/$1/$2 2>/dev/null;#打开host的port 可读写的socket连接,与文件描述符6连接if(($?!=0));thenecho "open $1 $2 error!";exit 1;fi#如果打开失败,$?返回不为0,终止程序echo -e "HEAD / HTTP/1.1\n\n\n\n\n">&6; #将HEAD 信息,发送给socket连接cat<&6; #从socket读取返回信息,显示为标准输出exec 6<&-;exec 6>&-; #关闭socket的输入,输出exit 0;

脚本建立后:存为testhttphead.sh

运行结果:

[chengmo@centos5 ~/shell]$ sh testhttphead.sh mand";#发送指定命令sendmsg "quit";#发送退出通向命令exec 8<&-;exec 8>&-;#关闭socket通道exit 0;

这是通过重定向,实现socket通讯中,发送然后获取返回的例子。其实,上面代码看似一次只能发送一段。时间上。我们可以反复调用:sendmsg ,捕捉输出数据。实现连续的,读与写操作。

实例截图:

其它实现方法:

其实通过:telnet也可以实现的。

[chengmo@centos5 shell]$ (echo "stats";sleep 2)|telnet 127.0.0.1 11211

通过nc命令实现:

[chengmo@centos5 shell]$ (echo "stats")|nc 127.0.0.1 11211

不需要加延迟,直接打开通道

第二个程序里面,看到shell完全可以处理交互设计了。如果按照这样,登陆ftp,pop3,stmp都可以类似实现。这些,我们通过shell socket类似程序实现,应该不困难,只是捕捉如发送解析的问题了。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章