Team federation

kanupriya 80 Reputation points
2023-10-10T15:58:59.93+00:00

HI,

i am giving a scenario below

my domain name is data.com

we have federated team partner with note.com but data.com do not want note.com ppl to ping anyone above director and above. is that posible???

team federation i know how to do that, but in restricted way i am not sure

Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
9,627 questions
0 comments No comments
{count} votes

1 answer

Sort by: Most helpful
  1. Ran Hou-MSFT 7,495 Reputation points Microsoft Vendor
    2023-10-11T05:52:45.6166667+00:00

    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.