VPN and a Windows 2008R2 file server Errors Announcing the arrival of Valued Associate #679:...
What is the ongoing value of the Kanban board to the developers as opposed to management
/bin/ls sorts differently than just ls
Kepler's 3rd law: ratios don't fit data
Raising a bilingual kid. When should we introduce the majority language?
Why aren't these two solutions equivalent? Combinatorics problem
How to charge percentage of transaction cost?
tabularx column has extra padding at right?
2 sample t test for sample sizes - 30,000 and 150,000
Does traveling In The United States require a passport or can I use my green card if not a US citizen?
Is my guitar’s action too high?
Who's this lady in the war room?
Does the universe have a fixed centre of mass?
Determine the generator of an ideal of ring of integers
What's the difference between using dependency injection with a container and using a service locator?
Does using the Inspiration rules for character defects encourage My Guy Syndrome?
Is Bran literally the world's memory?
Is it OK if I do not take the receipt in Germany?
What is the evidence that custom checks in Northern Ireland are going to result in violence?
Do chord progressions usually move by fifths?
Marquee sign letters
Is the Mordenkainen's Sword spell underpowered?
Converting a text document with special format to Pandas DataFrame
Why does my GNOME settings mention "Moto C Plus"?
Married in secret, can marital status in passport be changed at a later date?
VPN and a Windows 2008R2 file server Errors
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 23, 2019 at 23:30 UTC (7:30pm US/Eastern)Route internet traffic from openvpn tun0 to eth0connected to VPN, but traffic still via normal routeHow do I set up a VPN, such that I can connect to my Samba Share and printer?CA certificate expired on openvpnOpenVpn not working with Asus DSL-AC68UCan't ping specific IP via OpenVPNHow to make NordVPN with DD-WRT Faster?OpenVPN not listening on portOpenVPN - Performance issues - Different bandwith on different client systems but same server - Windows & LinuxImporting my .ovpn file into my DDWRT router. Having issues on matching up parameters
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}
At my office we store all of our files on a Windows 2008 R2 file server, I set up a VPN using OpenVPN on a Ubuntu 18.04.2 LTS. While we are in the office, we have no problem accessing any of the files. Everyone can access and log on to the VPN without any issues but when they try to access the file server is when problems start to happen. About 60% of the staff log onto the VPN and can access the file server with no problem the first try. The rest either say it takes them 10-20 mins of just being logged onto the VPN before they can access the file server, or they never get access to the file server. I will post screenshots of the errors down below.
Everyone is running Windows 10 and everyone is using Bitdefender for there computer firewall. Bitdefender should disable the default windows firewall and should take over. Everyone is on the same predetermined profile that has the current rules that are applied.
Is there any setting or configurations on their personal computers or on the config files that could be limiting their ability to access the file server through the VPN? Thank you for your time and knowledge you share.
Error 1
Error 2
Server.conf
port 1194
proto udp
dev tun
user nobody
group nogroup
persist-key
persist-tun
keepalive 10 120
topology subnet
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "dhcp-option WINS 10.0.0.9"
push "dhcp-option DNS 208.67.222.222"
push "dhcp-option DNS 208.67.220.220"
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option NBDD 10.0.0.9"
push "dhcp-option NBT 4"
compress lz4
dh none
ecdh-curve prime256v1
tls-crypt tls-crypt.key 0
crl-verify crl.pem
ca ca.crt
cert server_XXX.crt
key server_XXX.key
auth SHA256
cipher AES-128-GCM
ncp-ciphers AES-128-GCM
tls-server
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
status /var/log/openvpn/status.log
verb 3
User.ovpn
client
proto udp
remote OfficeIP 1194
dev tun
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
verify-x509-name server_XXX name
auth SHA256
auth-nocache
cipher AES-128-GCM
tls-client
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
setenv opt block-outside-dns # Prevent Windows 10 DNS leak
verb 3
compress lz4
<ca>
-----BEGIN CERTIFICATE-----
....CERTIFICATE.....
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
....CERTIFICATE.....
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN ENCRYPTED PRIVATE KEY-----
....KEY...
-----END ENCRYPTED PRIVATE KEY-----
</key>
<tls-crypt>
#
# 2048 bit OpenVPN static key
#
-----BEGIN OpenVPN Static key V1-----
....KEY.....
-----END OpenVPN Static key V1-----
</tls-crypt>
networking vpn openvpn windows-server-2008 file-sharing
add a comment |
At my office we store all of our files on a Windows 2008 R2 file server, I set up a VPN using OpenVPN on a Ubuntu 18.04.2 LTS. While we are in the office, we have no problem accessing any of the files. Everyone can access and log on to the VPN without any issues but when they try to access the file server is when problems start to happen. About 60% of the staff log onto the VPN and can access the file server with no problem the first try. The rest either say it takes them 10-20 mins of just being logged onto the VPN before they can access the file server, or they never get access to the file server. I will post screenshots of the errors down below.
Everyone is running Windows 10 and everyone is using Bitdefender for there computer firewall. Bitdefender should disable the default windows firewall and should take over. Everyone is on the same predetermined profile that has the current rules that are applied.
Is there any setting or configurations on their personal computers or on the config files that could be limiting their ability to access the file server through the VPN? Thank you for your time and knowledge you share.
Error 1
Error 2
Server.conf
port 1194
proto udp
dev tun
user nobody
group nogroup
persist-key
persist-tun
keepalive 10 120
topology subnet
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "dhcp-option WINS 10.0.0.9"
push "dhcp-option DNS 208.67.222.222"
push "dhcp-option DNS 208.67.220.220"
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option NBDD 10.0.0.9"
push "dhcp-option NBT 4"
compress lz4
dh none
ecdh-curve prime256v1
tls-crypt tls-crypt.key 0
crl-verify crl.pem
ca ca.crt
cert server_XXX.crt
key server_XXX.key
auth SHA256
cipher AES-128-GCM
ncp-ciphers AES-128-GCM
tls-server
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
status /var/log/openvpn/status.log
verb 3
User.ovpn
client
proto udp
remote OfficeIP 1194
dev tun
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
verify-x509-name server_XXX name
auth SHA256
auth-nocache
cipher AES-128-GCM
tls-client
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
setenv opt block-outside-dns # Prevent Windows 10 DNS leak
verb 3
compress lz4
<ca>
-----BEGIN CERTIFICATE-----
....CERTIFICATE.....
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
....CERTIFICATE.....
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN ENCRYPTED PRIVATE KEY-----
....KEY...
-----END ENCRYPTED PRIVATE KEY-----
</key>
<tls-crypt>
#
# 2048 bit OpenVPN static key
#
-----BEGIN OpenVPN Static key V1-----
....KEY.....
-----END OpenVPN Static key V1-----
</tls-crypt>
networking vpn openvpn windows-server-2008 file-sharing
add a comment |
At my office we store all of our files on a Windows 2008 R2 file server, I set up a VPN using OpenVPN on a Ubuntu 18.04.2 LTS. While we are in the office, we have no problem accessing any of the files. Everyone can access and log on to the VPN without any issues but when they try to access the file server is when problems start to happen. About 60% of the staff log onto the VPN and can access the file server with no problem the first try. The rest either say it takes them 10-20 mins of just being logged onto the VPN before they can access the file server, or they never get access to the file server. I will post screenshots of the errors down below.
Everyone is running Windows 10 and everyone is using Bitdefender for there computer firewall. Bitdefender should disable the default windows firewall and should take over. Everyone is on the same predetermined profile that has the current rules that are applied.
Is there any setting or configurations on their personal computers or on the config files that could be limiting their ability to access the file server through the VPN? Thank you for your time and knowledge you share.
Error 1
Error 2
Server.conf
port 1194
proto udp
dev tun
user nobody
group nogroup
persist-key
persist-tun
keepalive 10 120
topology subnet
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "dhcp-option WINS 10.0.0.9"
push "dhcp-option DNS 208.67.222.222"
push "dhcp-option DNS 208.67.220.220"
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option NBDD 10.0.0.9"
push "dhcp-option NBT 4"
compress lz4
dh none
ecdh-curve prime256v1
tls-crypt tls-crypt.key 0
crl-verify crl.pem
ca ca.crt
cert server_XXX.crt
key server_XXX.key
auth SHA256
cipher AES-128-GCM
ncp-ciphers AES-128-GCM
tls-server
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
status /var/log/openvpn/status.log
verb 3
User.ovpn
client
proto udp
remote OfficeIP 1194
dev tun
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
verify-x509-name server_XXX name
auth SHA256
auth-nocache
cipher AES-128-GCM
tls-client
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
setenv opt block-outside-dns # Prevent Windows 10 DNS leak
verb 3
compress lz4
<ca>
-----BEGIN CERTIFICATE-----
....CERTIFICATE.....
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
....CERTIFICATE.....
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN ENCRYPTED PRIVATE KEY-----
....KEY...
-----END ENCRYPTED PRIVATE KEY-----
</key>
<tls-crypt>
#
# 2048 bit OpenVPN static key
#
-----BEGIN OpenVPN Static key V1-----
....KEY.....
-----END OpenVPN Static key V1-----
</tls-crypt>
networking vpn openvpn windows-server-2008 file-sharing
At my office we store all of our files on a Windows 2008 R2 file server, I set up a VPN using OpenVPN on a Ubuntu 18.04.2 LTS. While we are in the office, we have no problem accessing any of the files. Everyone can access and log on to the VPN without any issues but when they try to access the file server is when problems start to happen. About 60% of the staff log onto the VPN and can access the file server with no problem the first try. The rest either say it takes them 10-20 mins of just being logged onto the VPN before they can access the file server, or they never get access to the file server. I will post screenshots of the errors down below.
Everyone is running Windows 10 and everyone is using Bitdefender for there computer firewall. Bitdefender should disable the default windows firewall and should take over. Everyone is on the same predetermined profile that has the current rules that are applied.
Is there any setting or configurations on their personal computers or on the config files that could be limiting their ability to access the file server through the VPN? Thank you for your time and knowledge you share.
Error 1
Error 2
Server.conf
port 1194
proto udp
dev tun
user nobody
group nogroup
persist-key
persist-tun
keepalive 10 120
topology subnet
server 10.8.0.0 255.255.255.0
ifconfig-pool-persist ipp.txt
push "dhcp-option WINS 10.0.0.9"
push "dhcp-option DNS 208.67.222.222"
push "dhcp-option DNS 208.67.220.220"
push "redirect-gateway def1 bypass-dhcp"
push "dhcp-option NBDD 10.0.0.9"
push "dhcp-option NBT 4"
compress lz4
dh none
ecdh-curve prime256v1
tls-crypt tls-crypt.key 0
crl-verify crl.pem
ca ca.crt
cert server_XXX.crt
key server_XXX.key
auth SHA256
cipher AES-128-GCM
ncp-ciphers AES-128-GCM
tls-server
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
status /var/log/openvpn/status.log
verb 3
User.ovpn
client
proto udp
remote OfficeIP 1194
dev tun
resolv-retry infinite
nobind
persist-key
persist-tun
remote-cert-tls server
verify-x509-name server_XXX name
auth SHA256
auth-nocache
cipher AES-128-GCM
tls-client
tls-version-min 1.2
tls-cipher TLS-ECDHE-ECDSA-WITH-AES-128-GCM-SHA256
setenv opt block-outside-dns # Prevent Windows 10 DNS leak
verb 3
compress lz4
<ca>
-----BEGIN CERTIFICATE-----
....CERTIFICATE.....
-----END CERTIFICATE-----
</ca>
<cert>
-----BEGIN CERTIFICATE-----
....CERTIFICATE.....
-----END CERTIFICATE-----
</cert>
<key>
-----BEGIN ENCRYPTED PRIVATE KEY-----
....KEY...
-----END ENCRYPTED PRIVATE KEY-----
</key>
<tls-crypt>
#
# 2048 bit OpenVPN static key
#
-----BEGIN OpenVPN Static key V1-----
....KEY.....
-----END OpenVPN Static key V1-----
</tls-crypt>
networking vpn openvpn windows-server-2008 file-sharing
networking vpn openvpn windows-server-2008 file-sharing
asked 5 hours ago
laxerlaxer
63
63
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1428368%2fvpn-and-a-windows-2008r2-file-server-errors%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1428368%2fvpn-and-a-windows-2008r2-file-server-errors%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown