[ https://issues.apache.org/jira/browse/CLOUDSTACK-8947?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14956595#comment-14956595 ]
ASF GitHub Bot commented on CLOUDSTACK-8947: -------------------------------------------- Github user DaanHoogland commented on a diff in the pull request: https://github.com/apache/cloudstack/pull/931#discussion_r41973826 --- Diff: test/integration/smoke/test_loadbalance.py --- @@ -254,30 +255,30 @@ def test_01_create_lb_rule_src_nat(self): ) - hostnames = [] - self.try_ssh(src_nat_ip_addr.ipaddress, hostnames) - self.try_ssh(src_nat_ip_addr.ipaddress, hostnames) - self.try_ssh(src_nat_ip_addr.ipaddress, hostnames) - self.try_ssh(src_nat_ip_addr.ipaddress, hostnames) - self.try_ssh(src_nat_ip_addr.ipaddress, hostnames) + unameResults = [] + self.try_ssh(src_nat_ip_addr.ipaddress, unameResults) + self.try_ssh(src_nat_ip_addr.ipaddress, unameResults) + self.try_ssh(src_nat_ip_addr.ipaddress, unameResults) + self.try_ssh(src_nat_ip_addr.ipaddress, unameResults) + self.try_ssh(src_nat_ip_addr.ipaddress, unameResults) - self.debug("Hostnames: %s" % str(hostnames)) + self.debug("UNAME: %s" % str(unameResults)) self.assertIn( - self.vm_1.name, - hostnames, + "Linux", --- End diff -- why make this succeed more a generic way/more cases ('Linux' instead of the actual hostname)? > Load Balancer not working with Isolated Networks > ------------------------------------------------ > > Key: CLOUDSTACK-8947 > URL: https://issues.apache.org/jira/browse/CLOUDSTACK-8947 > Project: CloudStack > Issue Type: Bug > Security Level: Public(Anyone can view this level - this is the > default.) > Components: Virtual Router > Affects Versions: 4.6.0 > Reporter: Wilder Rodrigues > Assignee: Wilder Rodrigues > Priority: Blocker > Fix For: 4.6.0 > > > 1. acquire IP in an isolated network > 2. go to ipaddress -> configuration -> firewall > 3. add firewall exception for port 22 > 4. then add LB rule for port 22 to a user VM > 5. try sshing to the new acquired ip(in step 1) --- ssh fails -- This message was sent by Atlassian JIRA (v6.3.4#6332)