-
-
Notifications
You must be signed in to change notification settings - Fork 197
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Making it work with Amazon EC2 instances #44
Comments
To implement this... Could you tell me which facts the AMI has set? Especially the facts |
@corby any news? |
Closed because of inactivity. |
I could really use this as currently I run a RHEL instance within AWS when a regular AWS version would do me just fine. Not many of the variables you requested report, here is a full dump of factor: [ec2-user@ip-10-1-3-194 ~]$ facter -p Does this help? What OP said about epel not existing is true, that has to be manually added. |
Closer!! I gave it a shot, this was the first few lines, everything else is spewing errors due to dependencies so I skipped dumping it here. err: /Stage[main]/Openvpn::Install/File[/etc/openvpn]: Could not evaluate: Could not find group nogroup |
Thanks, @gbarton. I assume that it's |
Were getting closer. Tried on a fresh instance, now it hangs indefinitely here until I hit ctrl-C any ideas?
|
It built! Thank you for suggesting to try one more time. For some reason a fresh yum update pushed things through, wasnt smart enough to pay attention to what came down. Does take a little while but it generates. I am unable to verify now though because I think I am running into an openvpn server change where I'm getting self signed cert errors: Sun Mar 01 12:53:39 2015 VERIFY ERROR: depth=1, error=self signed certificate in certificate chain: C=US, ST=XX, L=xxx, O=xxx, CN=xx CA, emailAddress=contact@xxx.com Googling says that MD5 is no longer supported (centos 7 openvpn forums), is there a way to configure it to do something else? |
I'm not sure whats going on. Verified my openvpn configs on another RHEL 6.6 vm and it worked great. I tried manually adding auth SHA256, and setting cypher to a few different things. None seemed to help. I also copied every single client file down to no avail. (When it works normally I just need the .ovpn file) |
I just tested this on a ec2 instance (thanks @gbarton for the machine). I tried to connect from the server itself and from my local computer with tunnelblick. It worked for both. The output can be found in this gist. @gbarton do you have a proxy in between or something? Did you try with tcp and udp? |
As the current implementation seems to work, I am going to merge it. |
Great module. But it's missing support for the standard Amazon EC2 AMI.
The following changes were needed to get it to work with Amazon:
yumrepo { "epel": enabled => 1 }
package { "easy-rsa": require => Yumrepo["epel"] }
The text was updated successfully, but these errors were encountered: