Public IP Range for Octave Servers

Is there a public IP range for Octave third party connections? I’d like to restrict public traffic to only allow Octave traffic on an API gateway if possible.

You can try to ssh to Octave device, then use “iptables” command to drop all connection except specific IP:

iptables -I INPUT ! --src <specific_ip> -m tcp -p tcp --dport <destination_port> -j DROP

1 Like