All systems operational...

 Billing

 Virtualizor

 Plesk

 Nexus

 Pterodactyl

Virtual Servers | What IPv4 addresses should be whitelisted for service monitoring? Print

  • 0

Within this guide, we aim to outline and demonstrate how you can ensure your service is always monitored automatically by our internal systems, enabling our teams to respond in the event of incidents.


1. You must ensure the following IPv4 address(es) are whitelisted on your server's firewall (this may be IPTables, FirewallD or UFW depending upon your preference and operating system):

  • 146.0.40.101 (monitoring.de.oxide.systems, located in Dusseldorf, Germany).

2. You may use the following sample commands to whitelist the above IPv4 address(es); please make sure to check which firewall you are using beforehand:

IPv4 address: 146.0.40.101 -

IPTables:
iptables -A INPUT -p icmp --icmp-type 8 -s 0/0 -d 146.0.40.101 -m state --state NEW,ESTABLISHED,RELATED -j ACCEPT
iptables -A OUTPUT -p icmp --icmp-type 0 -s 146.0.40.101 -d 0/0 -m state --state ESTABLISHED,RELATED -j ACCEPT

UFW:
Edit the file (/etc/ufw/before.rules) and add the following line:
-A ufw-before-input -p icmp --icmp-type echo-request –s 146.0.40.101 -m state --state ESTABLISHED -j ACCEPT

Was this answer helpful?

« Back