[
https://issues.apache.org/jira/browse/CLOUDSTACK-8915?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14942232#comment-14942232
]
ASF GitHub Bot commented on CLOUDSTACK-8915:
--------------------------------------------
Github user wilderrodrigues commented on the pull request:
https://github.com/apache/cloudstack/pull/908#issuecomment-145237254
Guys,
There is also a glitch with the test_vpc_redundant.py: it was expected to
fail on the new test_routes, because the default route is broken on R-VPC -
which needs an issue first and a new PR.
The glitch on the test was:
```
self.assertEqual(
result.count("0% packet loss"),
1,
"Ping to outside world from VM should be
successful"
)
```
Which would pass if we get "100.0% packet loss"
I changed it for:
```
self.assertEqual(
result.count("3 packets received"),
1,
"Ping to outside world from VM should be
successful"
)
```
I will submit the changes on this PR later today or tomorrow morning.
Cheers,
Wilder
> Cannot SSH into VMs deployed Redundant VPC routers
> --------------------------------------------------
>
> Key: CLOUDSTACK-8915
> URL: https://issues.apache.org/jira/browse/CLOUDSTACK-8915
> 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
>
> The Marvin test under componenet/test_vpc_redundant.py no longer passes. I
> also tried to test it manually, but unfortunately the feature is now broken.
> * Create a Redundant VPC
> * Add a tier
> * Add a new VM to the tier
> * Add an ACL, open port 22 and associate the ACL with the tier
> * Acquire a pub IP
> * Add a PF rule to port 22 towards the VM
> * Try to SSH to the VM through the Pub IP
> It fails with "No route to host"
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)