components/openstack/horizon/files/solaris_security_group_rules.py
changeset 7373 43fd8b285254
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/components/openstack/horizon/files/solaris_security_group_rules.py	Tue Nov 22 12:30:56 2016 -0800
@@ -0,0 +1,23 @@
+# Extend default set of security group rules that comes with Openstack
+# to include Solaris admin ports.
+
+SECURITY_GROUP_RULES.update({
+    'rad_tls': {
+        'name': 'RAD TLS',
+        'ip_protocol': 'tcp',
+        'from_port': '12302',
+        'to_port': '12302',
+    },
+    'rad_gss': {
+        'name': 'RAD GSS',
+        'ip_protocol': 'tcp',
+        'from_port': '6789',
+        'to_port': '6789',
+    },
+    'analytics_bui': {
+        'name': 'Analytics BUI',
+        'ip_protocol': 'tcp',
+        'from_port': '6787',
+        'to_port': '6787',
+    },
+})