Article overview: How to test the remote UDP port, we generally use the TCP port for the application service, but in some cases, we also need to open the UDP port. This article briefly describes how to test whether the UDP port is normal? Everyone knows the TCP port. For example, port 80 can use telnet ip 80 to verify whether the port is listening properly. Can the UDP port be tested the same? The details are as follows: Let's test it. Port 123 is the UDP port opened by the server 42.11.12.13. Udp 0 0 42.11.12.13:123 0.0.0.0:* 1472/ntpd 1. We first use telnet connection, as follows [root@kr-sg-test ~]# telnet 42.11.12.13 123 Trying 42.11.12.13... Telnet: connect to address 42.11.12.13: ConnecTIon refused Telnet: Unable to connect to remote host: ConnecTIon refused Obviously, the telnet connection was rejected and could not be tested successfully. 2. We use nc to test, as follows [root@kr-sg-test ~]# nc -vuz 42.11.12.13 123 ConnecTIon to 42.11.12.13 123 port [udp/ntp] succeeded! The result proves that the UDP 123 port is listening normally. Nc command usage: Usage: nc [-46DdhklnrStUuvzC] [-i interval] [-p source_port] [-s source_ip_address] [-T ToS] [-w TImeout] [-X proxy_version] [-x proxy_address[:port]] [hostname] [port[s]]
From the perspective of
improving customer experience, APM launches a new high power product-SP3U/6U series. SP3U/6U series integrates power
supply and electronic load into one 3U unit. It is also a very powerful one.
Only a button is needed to switch between the power supply and electronic load.
It can be used not only as a stand-alone powerful power supply, as a source to
provide power; but also as an electronic load, to absorb the consumed energy. It offers standard two-quadrants
functionality. IT could provides 9 voltage ranges, up to 2250V, supports
master-slave parallel with even current distribution up to 576kW. Built-in waveform generator supports
generating arbitrary waveforms, and imports LIST files for waveforms via USB
interface. SP3U/6U series is the
combination of reliability, high efficient setting, safe and multiple
measurement functions. SP3U/6U series is extensively used in aspects of high power
battery, automotive electronics, green energy, high speed testing etc.
APM
technologies product line includes Programmable Power Supplies. AC Power
Supplies, DC Electronic Load, 3 Phase Source and High Power Dc System.
750V DC Power Supply,High Measurement accuracy power supply,SCPI commands web GUI power supply APM Technologies Ltd , https://www.apmpowersupply.com
How to test udp port
Test if the udp port is open