-
Notifications
You must be signed in to change notification settings - Fork 16
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Defining Policy Rule Between Two UEs #33
Comments
This issue has been stale for 30 days and will be closed in 5 days. Comment to keep it open. |
This issue has been stale for 120 days and will be closed in 15 days. Comment to keep it open. |
This issue has been stale for 120 days and will be closed in 15 days. Comment to keep it open. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
How can I define a policy rule to specifically allow traffic between two UEs and deny all other traffic? I am working on the Aether project. So I added one default allow (high priority) and one default deny (low priority) rule in the config file on the Aether project (sd-core-5g-values.yaml file) as shown below:
Since their config file doesn't allow to define two endpoints in their allow/deny policy. I modified the "allow-specific" rule in pcf/service/init.go file to add a PCC rule that allows traffic between 172.250.237.122 and 172.250.237.121 like this "permit out ip from 172.250.237.122/32 to 172.250.237.121/32" as shown below.
The expected behavior is that all traffic between 172.250.237.122 and 172.250.237.121 should be allowed and all others should be denied. However, all the traffic gets denied including the traffic between 172.250.237.122 and 172.250.237.121. Kindly help me figure out the issue.
The text was updated successfully, but these errors were encountered: