博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
some utility discovered by Linux yum search all tcp, epel.repo
阅读量:6275 次
发布时间:2019-06-22

本文共 5127 字,大约阅读时间需要 17 分钟。

在使用Linux epel repo时,查找tcp发现了很多好玩的工具:
# cat /etc/yum.repos.d/epel.repo
[epel]name=Extra Packages for Enterprise Linux 6 - $basearchbaseurl=http://mirrors.aliyun.com/epel/6/$basearch        http://mirrors.aliyuncs.com/epel/6/$basearch#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-6&arch=$basearchfailovermethod=priorityenabled=1gpgcheck=0gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6 [epel-debuginfo]name=Extra Packages for Enterprise Linux 6 - $basearch - Debugbaseurl=http://mirrors.aliyun.com/epel/6/$basearch/debug        http://mirrors.aliyuncs.com/epel/6/$basearch/debug#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-debug-6&arch=$basearchfailovermethod=priorityenabled=0gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6gpgcheck=0 [epel-source]name=Extra Packages for Enterprise Linux 6 - $basearch - Sourcebaseurl=http://mirrors.aliyun.com/epel/6/SRPMS        http://mirrors.aliyuncs.com/epel/6/SRPMS#mirrorlist=https://mirrors.fedoraproject.org/metalink?repo=epel-source-6&arch=$basearchfailovermethod=priorityenabled=0gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
如下,有非常多好玩的工具:
# yum search all tcpLoaded plugins: security=========================================================== Matched: tcp ===========================================================tcping.x86_64 : Check of TCP connection to a given IP/Porttcputils.x86_64 : Utilities for TCP programming in shell-scriptstcp_wrappers.x86_64 : A security tool which acts as a wrapper for TCP daemonstcpick.x86_64 : A tcp stream sniffer, tracker and capturertcpreen.x86_64 : A TCP/IP re-engineering and monitoring programtcpreplay.x86_64 : Replay captured network traffictcptraceroute.x86_64 : A traceroute implementation using TCP packetsiperf.x86_64 : Measurement tool for TCP/UDP bandwidth performancenagios-plugins-tcp.x86_64 : Nagios Plugin - check_tcpnbd.x86_64 : Network Block Device user-space tools (TCP version)tcp_wrappers-devel.i686 : Development libraries and headers for tcp_wrapperstcp_wrappers-devel.x86_64 : Development libraries and headers for tcp_wrapperstcp_wrappers-libs.i686 : Libraries for tcp_wrapperstcp_wrappers-libs.x86_64 : Libraries for tcp_wrapperstcpcopy.x86_64 : An online request replication tooltcpdump.x86_64 : A network traffic monitoring tooltcpxtract.x86_64 : Tool for extracting files from network trafficvanessa_socket.i686 : Simplify TCP/IP socket operationsbalance.x86_64 : TCP load-balancing proxy server with round robin and failover mechanismsclean-network.x86_64 : An TCP/IP implementation for Cleanhaproxy.x86_64 : HAProxy is a TCP/HTTP reverse proxy for high availability environmentshping3.x86_64 : TCP/IP stack auditing and much moreiperf3.i686 : Measurement tool for TCP/UDP bandwidth performanceiperf3.x86_64 : Measurement tool for TCP/UDP bandwidth performanceiptraf-ng.x86_64 : A console-based network monitoring utilitync.x86_64 : Reads and writes data across network connections using TCP or UDPnet6.i686 : A TCP protocol abstraction for library C++net6.x86_64 : A TCP protocol abstraction for library C++nmap.x86_64 : Network exploration tool and security scannerpen.x86_64 : Load balancer for "simple" tcp based protocols such as http or smtpportreserve.x86_64 : TCP port reservation utilityredir.x86_64 : Redirect TCP connectionsser2net.x86_64 : Proxy that allows tcp connections to serial portsvanessa_socket.x86_64 : Simplify TCP/IP socket operationsvanessa_socket-pipe.x86_64 : Trivial TCP/IP pipe build using libvanessa_adtvtun.x86_64 : Virtual tunnel over TCP/IP networks2ping.noarch : Bi-directional ping utility3proxy.x86_64 : Tiny but very powerful proxyderrick.x86_64 : A Simple Network Stream Recorderdnstop.x86_64 : Displays information about DNS traffic on your networkipset.i686 : Manage Linux IP setsipset.x86_64 : Manage Linux IP setsiptraf.x86_64 : A console-based network monitoring utilitysnmpcheck.noarch : An utility to get information via SNMP protocolssocat.x86_64 : Bidirectional data relay between two data channels ('netcat++')syslog-ng.i686 : Next-generation syslog serversyslog-ng.x86_64 : Next-generation syslog servertsocks.i686 : Library for catching network connections, redirecting them on a SOCKS servertsocks.x86_64 : Library for catching network connections, redirecting them on a SOCKS servertypespeed.x86_64 : Test your typing speed and get your fingers' CPSudt.i686 : UDP based Data Transfer Protocoludt.x86_64 : UDP based Data Transfer Protocolunicornscan.x86_64 : Scalable, accurate, flexible and efficient network probing
比如redir这个工具,可以作为一个端口代理。
# redir --laddr=0.0.0.0 --lport=1999 --caddr=172.16.3.150 --cport=1922postgres@digoal-> psql -h 127.0.0.1 -p 1999 -U postgres postgrespsql (9.4.1, server 9.5devel)WARNING: psql major version 9.4, server major version 9.5.         Some psql features might not work.Type "help" for help.
又比如nc, 即netcat,可以用来做网络管道,端口扫描等工作。
服务端开启一个监听# nc -l 1234客户端连接过去postgres@digoal-> nc 127.0.0.1 1234fhello服务端see it:fhello或者作为数据传输的管道。服务端[root@digoal ~]# nc -l 1234 >./file客户端postgres@digoal-> nc 127.0.0.1 1234 <./.bash_history
又如
socat,与nc类似。
iperf,调试和监控网络传输
balance则是一个简单的端口代理和负载均衡工具
。。。。。。

转载地址:http://otwva.baihongyu.com/

你可能感兴趣的文章
对象的继承及对象相关内容探究
查看>>
Spring: IOC容器的实现
查看>>
Serverless五大优势,成本和规模不是最重要的,这点才是
查看>>
Nginx 极简入门教程!
查看>>
iOS BLE 开发小记[4] 如何实现 CoreBluetooth 后台运行模式
查看>>
Item 23 不要在代码中使用新的原生态类型(raw type)
查看>>
为网页添加留言功能
查看>>
JavaScript—数组(17)
查看>>
Android 密钥保护和 C/S 网络传输安全理论指南
查看>>
以太坊ERC20代币合约优化版
查看>>
Why I Began
查看>>
同一台电脑上Windows 7和Ubuntu 14.04的CPU温度和GPU温度对比
查看>>
js数组的操作
查看>>
springmvc Could not write content: No serializer
查看>>
Python系语言发展综述
查看>>
新手 开博
查看>>
借助开源工具高效完成Java应用的运行分析
查看>>
163 yum
查看>>
第三章:Shiro的配置——深入浅出学Shiro细粒度权限开发框架
查看>>
80后创业的经验谈(转,朴实但实用!推荐)
查看>>