Security Group: {{ securitygroup.name }}
Add and remove protocols to the security group by authorizing and revoking port forwarding. For instance
[tcp, 80, 80] will allow access to HTTP from devices outside this security group.
{% include "django_nova/_messages.html" %}
Protocol |
From Port |
To Port |
|
{% for rule in securitygroup.rules %}
{{ rule.ip_protocol }} |
{{ rule.from_port }} |
{{ rule.to_port }} |
|
{% endfor %}
Authorize