Hi @kanupriya
Thanks for visiting our forum. Microsoft Teams tag is mainly focused on the general issue of Microsoft Teams application troubleshooting. Based on your description, this problem is not supported, which we are not very familiar. The following is for informational purposes only:
One way to do this is to use iptables, a tool for managing network packets on Linux systems. You can create a rule that blocks ICMP (Internet Control Message Protocol) packets, which are used for ping, from note.com to data.com based on the source and destination IP addresses. For example, if note.com has the IP range 10.0.0.0/24 and data.com has the IP range 192.168.0.0/24, and you want to block ping from note.com to data.com for people with IP addresses above 192.168.0.100, you can use the following command:
sudo iptables -A INPUT -p icmp --icmp-type echo-request -s 10.0.0.0/24 -d 192.168.0.100/27 -j DROP
This command will append a rule to the INPUT chain of iptables that will drop any ICMP echo-request (ping) packets from the source network 10.0.0.0/24 to the destination network 192.168.0.100/27, which covers the IP addresses from 192.168.0.100 to 192.168.0.127.
Hope the above information is helpful for you!
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.