OpenStack - designar grupo de segurança à instância existente

5

Eu quero atribuir um grupo de segurança a uma instância existente. Isso é possível?

    
por Alex 15.11.2012 / 19:22

2 respostas

2

Agora você pode:

Na interface da Web do Horizon, desde que você tenha uma versão bastante recente do Horizon, ou seja, & grt = Grizzly: Alterar grupo de segurança :

It's possible to change the security groups on the fly using Horizon, if you're using the latest release Grizzly. Click on the "More" button for the instance you want to update and you should see an "Edit Security Groups" option.

In the CLI, use nova help add-secgroup

The code for this was added a year ago so I believe this should be available in Folsom.

    
por 01.02.2014 / 05:13
0

Crie um novo grupo de segurança chamado novo.

Obtenha o ID da sua imagem ( <image-id> )

select id from security_groups where name = 'new' ;
update security_group_instance_association set security_group_id=<security-group-id> where instance_id=<image-id> ;
    
por 11.03.2013 / 20:13

Tags