Difference between revisions of "VScaler:Landing page"

From Define Wiki
Jump to navigation Jump to search
Line 38: Line 38:
 
** [[vScaler: CIX Storage Nodes OpenStack Installation - Environment Variables | Environment Variables]]
 
** [[vScaler: CIX Storage Nodes OpenStack Installation - Environment Variables | Environment Variables]]
 
** [[vScaler: CIX Storage Nodes OpenStack Installation - Cinder | 12 - Cinder]]
 
** [[vScaler: CIX Storage Nodes OpenStack Installation - Cinder | 12 - Cinder]]
 +
 +
===HPC as a Service===
 +
Initial notes:
 +
* In the compute nodes edit the <tt>/usr/lib/python2.7/site-packages/neutron/agent/linux/iptables_firewall.py</tt> and comment out lines 444,445,446, from the <tt>_drop_dhcp_rule</tt> function
 +
* Disable security groups and port security on the neutron port of the compute nodes:
 +
<syntaxhighlight>
 +
#Identify the port by MAC address or ip:
 +
[root@bios-ohpc ~]# neutron port-list | grep 44:6d
 +
| 599c2814-37e4-4085-953e-88c5ca7e62d3 |      | fa:16:3e:fc:44:6d | {"subnet_id": "6e14be1e-5d51-4291-b3b6-10dfb6d95c42", "ip_address": "10.16.0.152"}    |
 +
 +
#disable security groups:
 +
[root@bios-ohpc ~]# neutron port-update 599c2814-37e4-4085-953e-88c5ca7e62d3 --no-security-groups
 +
 +
#disable port security:
 +
[root@bios-ohpc ~]# neutron port-update 599c2814-37e4-4085-953e-88c5ca7e62d3 --port_security_enabled=FALSE
 +
</syntaxhighlight>

Revision as of 12:21, 11 August 2016

VScaler logo (small).jpg

vScaler - Cork Internet Exchange

Details and information relating to the vScaler installation at Cork Internet Exchange (CIX)

Installation

Head Node / Controller Node

Network Node

Compute Nodes

Storage Nodes

HPC as a Service

Initial notes:

  • In the compute nodes edit the /usr/lib/python2.7/site-packages/neutron/agent/linux/iptables_firewall.py and comment out lines 444,445,446, from the _drop_dhcp_rule function
  • Disable security groups and port security on the neutron port of the compute nodes:
#Identify the port by MAC address or ip:
[root@bios-ohpc ~]# neutron port-list | grep 44:6d
| 599c2814-37e4-4085-953e-88c5ca7e62d3 |      | fa:16:3e:fc:44:6d | {"subnet_id": "6e14be1e-5d51-4291-b3b6-10dfb6d95c42", "ip_address": "10.16.0.152"}    |

#disable security groups:
[root@bios-ohpc ~]# neutron port-update 599c2814-37e4-4085-953e-88c5ca7e62d3 --no-security-groups

#disable port security:
[root@bios-ohpc ~]# neutron port-update 599c2814-37e4-4085-953e-88c5ca7e62d3 --port_security_enabled=FALSE