Avocent DSR8020 KVM/IP - Network Connect Error - Solution

This error is commonly due to Java security or TLS settings but there is a second issue with forwarded ports that also causes it.

 

1. Java Security/TLS Settings issue:

This article has the solution to change them all in Linux automatically

2. Port Forwarding Issue if your Avocent DSR is behind NAT/private IP

One would assume if you can get to the interface successfully via port 80/443 that all would be well but it's not enough.

Actually a port scan shows the following ports are open on the DSR:

PORT     STATE SERVICE
80/tcp   open  http
443/tcp  open  https
2068/tcp open  advocentkvm
3211/tcp open  avsecuremgmt
3871/tcp open  avocent-adsap
8192/tcp open  sophos

You could forward all above ports but for normal functionality they are not required unless you are using the Avocent software I believe.

Forward these ports to your private IP of the Avocent DSR:

80,443,2068,8192

An example in iptables of how to forward the ports:

-s 192.168.5.4/32 #this is the only public IP that can access it (you can do away with this line if you want any remote IP to have access but for security this is recommended.  I find the unit itself tends to crash from attacks/hacking attempts when left wide open to the public.

iptables -A PREROUTING -t nat -s 192.16.5.4/32 -d 103.2.5.2/32 -p tcp -m multiport --dports 80,443,2068,8192,3871,3211 -j DNAT --to 192.168.10.5

The same portforwarding can also be achieved with OpenSSH like this:

*Replace 192.168.10.5 with the NAT IP of your Avocent DSR unit

ssh -L 80:192.168.10.5:80 -L 443:192.168.10.5:443 -L 2068:192.168.10.5:2068 -L 8192:192.168.10.5:8192  user@remotehost.com

#bash script

remoteip=publicip

internalip=lanip

ssh -L 80:$internalip:80 -L 443:$internalip:443 -L 2068:$internalip:2068 -L 8192:$internalip:8192  user@$remoteip
 

Other related Avocent DSR issues

http://realtechtalk.com/Avocent_Unable_to_load_resource_avctVideojar-1646-articles

http://realtechtalk.com/Avocent_8020_KVM_Java_Icedtea_Viewer_-1702-articles


Tags:

avocent, dsr, kvm, ip, solutionthis, commonly, tls, settings, forwarded, ports, linux, automatically, forwarding, nat, interface, successfully, via, scan, tcp, http, https, advocentkvm, avsecuremgmt, adsap, sophos, functionality, software, iptables, recommended, tends, attacks, hacking, attempts, prerouting, multiport, dports, dnat, portforwarding, achieved, openssh, ssl, user, remotehost, realtechtalk, avocent_unable_to_load_resource_avctvideojar, articles, avocent_, _kvm_java_icedtea_viewer_,

Latest Articles

  • How high can a Xeon CPU get?
  • bash fix PATH environment variable "command not found" solution
  • Ubuntu Linux Mint Debian Redhat Youtube Cannot Play HD or 4K videos, dropped frames or high CPU usage with Nvidia or AMD Driver
  • hostapd example configuration for high speed AC on 5GHz using WPA2
  • hostapd how to enable and use WPS to connect wireless devices like printers
  • Dell Server Workstation iDRAC Dead after Firmware Update Solution R720, R320, R730
  • Cloned VM/Server/Computer in Linux won't boot and goes to initramfs busybox Solution
  • How To Add Windows 7 8 10 11 to GRUB Boot List Dual Booting
  • How to configure OpenDKIM on Linux with Postfix and setup bind zonefile
  • Debian Ubuntu 10/11/12 Linux how to get tftpd-hpa server setup tutorial
  • efibootmgr: option requires an argument -- 'd' efibootmgr version 15 grub-install.real: error: efibootmgr failed to register the boot entry: Operation not permitted.
  • Apache Error Won't start SSL Cert Issue Solution Unable to configure verify locations for client authentication SSL Library Error: 151441510 error:0906D066:PEM routines:PEM_read_bio:bad end line SSL Library Error: 185090057 error:0B084009:x509 certif
  • Linux Debian Mint Ubuntu Bridge br0 gets random IP
  • redis requirements
  • How to kill a docker swarm
  • docker swarm silly issues
  • isc-dhcp-server dhcpd how to get longer lease
  • nvidia cannot resume from sleep Comm: nvidia-sleep.sh Tainted: Linux Ubuntu Mint Debian
  • zfs and LUKS how to recover in Linux
  • [error] (28)No space left on device: Cannot create SSLMutex Apache Solution Linux CentOS Ubuntu Debian Mint