This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Weird problem - interfaces going on and off

Recently I was given a retired Astaro unit (ASG 220 to be specific, licence expired, company bought a newer model). I followed pocedure mentioned here: https://community.sophos.com/products/unified-threat-management/astaroorg/f/52/t/28110 to install home licence on a unit. I did some configuration, firewall rules, whatevers.
Everything was OK to the point when I've connected a unit to the internet. Rather standard procedure - new interface, eth1, IP goes here, netmask, gateway goes there, apply. I did some pings from the outside to the unit.
Then, after a minute or two, both interfaces (eth0 LAN and eth1 WAN) started to behave strangely. They seem to be on for a souple of seconds, then they both go off at the same time. After few seconds they both go on, and so on and so on. Link indicators on both Astaro and a connected switch behave in the same way.
Restarting a unit has no effect.
I've replaced switch and patchcords with no effect.

What could possibly be a problem?

Fun fact: link light stay on when I do system shutdown from local console.


This thread was automatically locked due to age.
Parents
  • So, you probably just need to do this for the Internal interface.  Do the following as root at the command line (other readers, if you have a paid license, don't do this without instructions from Sophos Support):

    Find the object name for eth4:

    cc get_objects_filtered '$_->{data}->{hardware} eq "eth4"'


    When I did that, I found 'ref' => 'REF_wLngkUfDUx' in the object.


    Next, we need to know the name of the object for the Internal interface:

    cc get_objects_filtered '$_->{data}->{name} eq "Internal"'


    I found 'ref' => 'REF_PimIntInternal'.


    So, the command to change "Internal" to eth4 on my UTM would be:

    cc change_object  REF_PimIntInternal itfhw "REF_wLngkUfDUx"



    Mind you, I haven't run the final command on a test machine, but it should work (credit to member teched for teaching me the use of the get_objects_filtered command!).

    Cheers - Bob
Reply
  • So, you probably just need to do this for the Internal interface.  Do the following as root at the command line (other readers, if you have a paid license, don't do this without instructions from Sophos Support):

    Find the object name for eth4:

    cc get_objects_filtered '$_->{data}->{hardware} eq "eth4"'


    When I did that, I found 'ref' => 'REF_wLngkUfDUx' in the object.


    Next, we need to know the name of the object for the Internal interface:

    cc get_objects_filtered '$_->{data}->{name} eq "Internal"'


    I found 'ref' => 'REF_PimIntInternal'.


    So, the command to change "Internal" to eth4 on my UTM would be:

    cc change_object  REF_PimIntInternal itfhw "REF_wLngkUfDUx"



    Mind you, I haven't run the final command on a test machine, but it should work (credit to member teched for teaching me the use of the get_objects_filtered command!).

    Cheers - Bob
Children
No Data