Forum Discussion

gtait's avatar
gtait
Level 3
7 years ago

Backup Exec - Ubuntu Server

Hi I am currently running a trial of the product right now. Everything has been working find from a Windows perspective. I am having an issue with getting the media server speaking with a linux serv...
  • gtait's avatar
    gtait
    7 years ago

    Okay. After some more thinking today I managed to get it working.

    I installed the agent on another linux server to check it wasn't anything I was doing and this added first time. I found out the Zabbix installation adds some weird rules to the iptables. I cleared these running the below commands.

     

    iptables -P INPUT ACCEPT
    iptables -P FORWARD ACCEPT
    iptables -P OUTPUT ACCEPT
    iptables -t nat -F
    iptables -t mangle -F
    iptables -F
    iptables -X

    ip6tables -P INPUT ACCEPT
    ip6tables -P FORWARD ACCEPT
    ip6tables -P OUTPUT ACCEPT
    ip6tables -t nat -F
    ip6tables -t mangle -F
    ip6tables -F
    ip6tables -X

    After running the above. Be warned it will clear all rules. Issue the command: iptables -nvL

    The tables should show with nothing. You can build from here if necessary. Obviously a good idea to copy the rules to a file sudo iptables-save > iptables.conf