How to fix extremely slow Virtualbox network download speed?
I'm using an Ubuntu 12.04 VM (hashicorp/precise32) via Vagrant/Virtualbox. It seems to have an exremely slow download speed compared to my host system. This is what I get with the host system (OSX) with speedtest-cli:
Testing download speed........................................
Download: 845.62 Mbits/s
Testing upload speed..................................................
Upload: 296.03 Mbits/s
And this is what I get in the guest OS (Ubuntu 12.04):
Testing download speed........................................
Download: 12.41 Mbits/s
Testing upload speed..................................................
Upload: 247.64 Mbits/s
So host download speed is 70 times faster! The usual response to these issues is this:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
end
But I have already configured it to my Vagrantfile.
I also tested this with plain Virtualbox and 12.04 (no Vagrant). The same issue occurs when I use NAT interface. However, switching to bridged mode makes the download speed 20x faster. This is nasty, since Vagrant relies on the NAT interface to be always eth0.
I use OSX Mavericks as the host system. Virtualbox version is 4.3.18.
Any ideas?
networking ubuntu virtualbox vagrant
add a comment |
I'm using an Ubuntu 12.04 VM (hashicorp/precise32) via Vagrant/Virtualbox. It seems to have an exremely slow download speed compared to my host system. This is what I get with the host system (OSX) with speedtest-cli:
Testing download speed........................................
Download: 845.62 Mbits/s
Testing upload speed..................................................
Upload: 296.03 Mbits/s
And this is what I get in the guest OS (Ubuntu 12.04):
Testing download speed........................................
Download: 12.41 Mbits/s
Testing upload speed..................................................
Upload: 247.64 Mbits/s
So host download speed is 70 times faster! The usual response to these issues is this:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
end
But I have already configured it to my Vagrantfile.
I also tested this with plain Virtualbox and 12.04 (no Vagrant). The same issue occurs when I use NAT interface. However, switching to bridged mode makes the download speed 20x faster. This is nasty, since Vagrant relies on the NAT interface to be always eth0.
I use OSX Mavericks as the host system. Virtualbox version is 4.3.18.
Any ideas?
networking ubuntu virtualbox vagrant
add a comment |
I'm using an Ubuntu 12.04 VM (hashicorp/precise32) via Vagrant/Virtualbox. It seems to have an exremely slow download speed compared to my host system. This is what I get with the host system (OSX) with speedtest-cli:
Testing download speed........................................
Download: 845.62 Mbits/s
Testing upload speed..................................................
Upload: 296.03 Mbits/s
And this is what I get in the guest OS (Ubuntu 12.04):
Testing download speed........................................
Download: 12.41 Mbits/s
Testing upload speed..................................................
Upload: 247.64 Mbits/s
So host download speed is 70 times faster! The usual response to these issues is this:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
end
But I have already configured it to my Vagrantfile.
I also tested this with plain Virtualbox and 12.04 (no Vagrant). The same issue occurs when I use NAT interface. However, switching to bridged mode makes the download speed 20x faster. This is nasty, since Vagrant relies on the NAT interface to be always eth0.
I use OSX Mavericks as the host system. Virtualbox version is 4.3.18.
Any ideas?
networking ubuntu virtualbox vagrant
I'm using an Ubuntu 12.04 VM (hashicorp/precise32) via Vagrant/Virtualbox. It seems to have an exremely slow download speed compared to my host system. This is what I get with the host system (OSX) with speedtest-cli:
Testing download speed........................................
Download: 845.62 Mbits/s
Testing upload speed..................................................
Upload: 296.03 Mbits/s
And this is what I get in the guest OS (Ubuntu 12.04):
Testing download speed........................................
Download: 12.41 Mbits/s
Testing upload speed..................................................
Upload: 247.64 Mbits/s
So host download speed is 70 times faster! The usual response to these issues is this:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--natdnshostresolver1", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy1", "on"]
end
But I have already configured it to my Vagrantfile.
I also tested this with plain Virtualbox and 12.04 (no Vagrant). The same issue occurs when I use NAT interface. However, switching to bridged mode makes the download speed 20x faster. This is nasty, since Vagrant relies on the NAT interface to be always eth0.
I use OSX Mavericks as the host system. Virtualbox version is 4.3.18.
Any ideas?
networking ubuntu virtualbox vagrant
networking ubuntu virtualbox vagrant
edited Dec 9 '14 at 11:33
asked Dec 9 '14 at 10:59
auramo
6731613
6731613
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
For vagrant users, add the following to your Vagrant file:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype1", "virtio"]
end
I got a speed boost of ~15x. On VirtualBox GUI I see now a different Adapter Type for my NAT interface: Paravirtualized Network (virtio-net).
1
I had the same issue: the upload speed on a Boot2Docker image running on Vagrant, as measured using speedtest-cli, was 0 (so slow you can't measure it?). As soon as I added this setting, the upload speed matched the speed of my host OS. Thanks!
– Yevgeniy Brikman
May 11 '15 at 1:33
Does anyone know what are all the other possible values ? Any link to the docs ?
– nha
May 22 '15 at 11:51
no improvement for me I'm afraid. Vagrant 1.7.4, Virtualbox 5.0.4
– lsh
Oct 22 '15 at 13:06
All possible options are here: virtualbox.org/manual/ch08.html#idp46730496367936 TryAm79C973
too if you have problems withvirtio
.
– Juliusz Gonera
Feb 7 '16 at 18:54
1
VBoxManage modifyvm YourMachineName --nictype1 virtio
– Brian Low
Apr 14 '16 at 2:56
|
show 1 more comment
I have found mach simpler solution for me
- Host ubuntu 14.04
- guest ubuntu 14.04
- Nat with port forwarding
- extremely slow upload speed from guest. It was so slow that speed test even cant measure that.
I just switched to PCNet-Fast III adapter. And speed become good enough for me (40 Mb/s)
1
Worked for me with Host Ubuntu 14.04 and Guest Ubuntu 12.04.
– ross
Dec 15 '15 at 19:14
1
To switch to PCNet Fast III in Vagrantfile, usev.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
.
– Juliusz Gonera
Feb 7 '16 at 18:56
This works great! I was having trouble withapt-get
hanging while trying to download. Eventually it would work, but changing the network adapter as above sorts the problem out.
– Brendon Muir
Aug 6 '16 at 4:04
Worked with Win10 host running Ubuntu 16.10.
– robsn
Dec 12 '16 at 12:48
add a comment |
@auramo's answer is useful, but please note that it specifies a specific NIC: #1. In my system, for instance, I have numerous Network Interfaces. I had to specify --nictype4
.
As well, others have reported benefits elsewhere of specifying natdnshostresolver#
and natdnsproxy#
where #
is a number identifying your NIC. In mine, it looks like this:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype4", "virtio"]
v.customize ["modifyvm", :id, "--natdnshostresolver4", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy4", "on"]
end
add a comment |
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%2f850357%2fhow-to-fix-extremely-slow-virtualbox-network-download-speed%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
For vagrant users, add the following to your Vagrant file:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype1", "virtio"]
end
I got a speed boost of ~15x. On VirtualBox GUI I see now a different Adapter Type for my NAT interface: Paravirtualized Network (virtio-net).
1
I had the same issue: the upload speed on a Boot2Docker image running on Vagrant, as measured using speedtest-cli, was 0 (so slow you can't measure it?). As soon as I added this setting, the upload speed matched the speed of my host OS. Thanks!
– Yevgeniy Brikman
May 11 '15 at 1:33
Does anyone know what are all the other possible values ? Any link to the docs ?
– nha
May 22 '15 at 11:51
no improvement for me I'm afraid. Vagrant 1.7.4, Virtualbox 5.0.4
– lsh
Oct 22 '15 at 13:06
All possible options are here: virtualbox.org/manual/ch08.html#idp46730496367936 TryAm79C973
too if you have problems withvirtio
.
– Juliusz Gonera
Feb 7 '16 at 18:54
1
VBoxManage modifyvm YourMachineName --nictype1 virtio
– Brian Low
Apr 14 '16 at 2:56
|
show 1 more comment
For vagrant users, add the following to your Vagrant file:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype1", "virtio"]
end
I got a speed boost of ~15x. On VirtualBox GUI I see now a different Adapter Type for my NAT interface: Paravirtualized Network (virtio-net).
1
I had the same issue: the upload speed on a Boot2Docker image running on Vagrant, as measured using speedtest-cli, was 0 (so slow you can't measure it?). As soon as I added this setting, the upload speed matched the speed of my host OS. Thanks!
– Yevgeniy Brikman
May 11 '15 at 1:33
Does anyone know what are all the other possible values ? Any link to the docs ?
– nha
May 22 '15 at 11:51
no improvement for me I'm afraid. Vagrant 1.7.4, Virtualbox 5.0.4
– lsh
Oct 22 '15 at 13:06
All possible options are here: virtualbox.org/manual/ch08.html#idp46730496367936 TryAm79C973
too if you have problems withvirtio
.
– Juliusz Gonera
Feb 7 '16 at 18:54
1
VBoxManage modifyvm YourMachineName --nictype1 virtio
– Brian Low
Apr 14 '16 at 2:56
|
show 1 more comment
For vagrant users, add the following to your Vagrant file:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype1", "virtio"]
end
I got a speed boost of ~15x. On VirtualBox GUI I see now a different Adapter Type for my NAT interface: Paravirtualized Network (virtio-net).
For vagrant users, add the following to your Vagrant file:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype1", "virtio"]
end
I got a speed boost of ~15x. On VirtualBox GUI I see now a different Adapter Type for my NAT interface: Paravirtualized Network (virtio-net).
edited Dec 15 '15 at 19:51
ross
1034
1034
answered Dec 9 '14 at 12:26
auramo
6731613
6731613
1
I had the same issue: the upload speed on a Boot2Docker image running on Vagrant, as measured using speedtest-cli, was 0 (so slow you can't measure it?). As soon as I added this setting, the upload speed matched the speed of my host OS. Thanks!
– Yevgeniy Brikman
May 11 '15 at 1:33
Does anyone know what are all the other possible values ? Any link to the docs ?
– nha
May 22 '15 at 11:51
no improvement for me I'm afraid. Vagrant 1.7.4, Virtualbox 5.0.4
– lsh
Oct 22 '15 at 13:06
All possible options are here: virtualbox.org/manual/ch08.html#idp46730496367936 TryAm79C973
too if you have problems withvirtio
.
– Juliusz Gonera
Feb 7 '16 at 18:54
1
VBoxManage modifyvm YourMachineName --nictype1 virtio
– Brian Low
Apr 14 '16 at 2:56
|
show 1 more comment
1
I had the same issue: the upload speed on a Boot2Docker image running on Vagrant, as measured using speedtest-cli, was 0 (so slow you can't measure it?). As soon as I added this setting, the upload speed matched the speed of my host OS. Thanks!
– Yevgeniy Brikman
May 11 '15 at 1:33
Does anyone know what are all the other possible values ? Any link to the docs ?
– nha
May 22 '15 at 11:51
no improvement for me I'm afraid. Vagrant 1.7.4, Virtualbox 5.0.4
– lsh
Oct 22 '15 at 13:06
All possible options are here: virtualbox.org/manual/ch08.html#idp46730496367936 TryAm79C973
too if you have problems withvirtio
.
– Juliusz Gonera
Feb 7 '16 at 18:54
1
VBoxManage modifyvm YourMachineName --nictype1 virtio
– Brian Low
Apr 14 '16 at 2:56
1
1
I had the same issue: the upload speed on a Boot2Docker image running on Vagrant, as measured using speedtest-cli, was 0 (so slow you can't measure it?). As soon as I added this setting, the upload speed matched the speed of my host OS. Thanks!
– Yevgeniy Brikman
May 11 '15 at 1:33
I had the same issue: the upload speed on a Boot2Docker image running on Vagrant, as measured using speedtest-cli, was 0 (so slow you can't measure it?). As soon as I added this setting, the upload speed matched the speed of my host OS. Thanks!
– Yevgeniy Brikman
May 11 '15 at 1:33
Does anyone know what are all the other possible values ? Any link to the docs ?
– nha
May 22 '15 at 11:51
Does anyone know what are all the other possible values ? Any link to the docs ?
– nha
May 22 '15 at 11:51
no improvement for me I'm afraid. Vagrant 1.7.4, Virtualbox 5.0.4
– lsh
Oct 22 '15 at 13:06
no improvement for me I'm afraid. Vagrant 1.7.4, Virtualbox 5.0.4
– lsh
Oct 22 '15 at 13:06
All possible options are here: virtualbox.org/manual/ch08.html#idp46730496367936 Try
Am79C973
too if you have problems with virtio
.– Juliusz Gonera
Feb 7 '16 at 18:54
All possible options are here: virtualbox.org/manual/ch08.html#idp46730496367936 Try
Am79C973
too if you have problems with virtio
.– Juliusz Gonera
Feb 7 '16 at 18:54
1
1
VBoxManage modifyvm YourMachineName --nictype1 virtio
– Brian Low
Apr 14 '16 at 2:56
VBoxManage modifyvm YourMachineName --nictype1 virtio
– Brian Low
Apr 14 '16 at 2:56
|
show 1 more comment
I have found mach simpler solution for me
- Host ubuntu 14.04
- guest ubuntu 14.04
- Nat with port forwarding
- extremely slow upload speed from guest. It was so slow that speed test even cant measure that.
I just switched to PCNet-Fast III adapter. And speed become good enough for me (40 Mb/s)
1
Worked for me with Host Ubuntu 14.04 and Guest Ubuntu 12.04.
– ross
Dec 15 '15 at 19:14
1
To switch to PCNet Fast III in Vagrantfile, usev.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
.
– Juliusz Gonera
Feb 7 '16 at 18:56
This works great! I was having trouble withapt-get
hanging while trying to download. Eventually it would work, but changing the network adapter as above sorts the problem out.
– Brendon Muir
Aug 6 '16 at 4:04
Worked with Win10 host running Ubuntu 16.10.
– robsn
Dec 12 '16 at 12:48
add a comment |
I have found mach simpler solution for me
- Host ubuntu 14.04
- guest ubuntu 14.04
- Nat with port forwarding
- extremely slow upload speed from guest. It was so slow that speed test even cant measure that.
I just switched to PCNet-Fast III adapter. And speed become good enough for me (40 Mb/s)
1
Worked for me with Host Ubuntu 14.04 and Guest Ubuntu 12.04.
– ross
Dec 15 '15 at 19:14
1
To switch to PCNet Fast III in Vagrantfile, usev.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
.
– Juliusz Gonera
Feb 7 '16 at 18:56
This works great! I was having trouble withapt-get
hanging while trying to download. Eventually it would work, but changing the network adapter as above sorts the problem out.
– Brendon Muir
Aug 6 '16 at 4:04
Worked with Win10 host running Ubuntu 16.10.
– robsn
Dec 12 '16 at 12:48
add a comment |
I have found mach simpler solution for me
- Host ubuntu 14.04
- guest ubuntu 14.04
- Nat with port forwarding
- extremely slow upload speed from guest. It was so slow that speed test even cant measure that.
I just switched to PCNet-Fast III adapter. And speed become good enough for me (40 Mb/s)
I have found mach simpler solution for me
- Host ubuntu 14.04
- guest ubuntu 14.04
- Nat with port forwarding
- extremely slow upload speed from guest. It was so slow that speed test even cant measure that.
I just switched to PCNet-Fast III adapter. And speed become good enough for me (40 Mb/s)
answered Apr 2 '15 at 16:06
paul_di
26124
26124
1
Worked for me with Host Ubuntu 14.04 and Guest Ubuntu 12.04.
– ross
Dec 15 '15 at 19:14
1
To switch to PCNet Fast III in Vagrantfile, usev.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
.
– Juliusz Gonera
Feb 7 '16 at 18:56
This works great! I was having trouble withapt-get
hanging while trying to download. Eventually it would work, but changing the network adapter as above sorts the problem out.
– Brendon Muir
Aug 6 '16 at 4:04
Worked with Win10 host running Ubuntu 16.10.
– robsn
Dec 12 '16 at 12:48
add a comment |
1
Worked for me with Host Ubuntu 14.04 and Guest Ubuntu 12.04.
– ross
Dec 15 '15 at 19:14
1
To switch to PCNet Fast III in Vagrantfile, usev.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
.
– Juliusz Gonera
Feb 7 '16 at 18:56
This works great! I was having trouble withapt-get
hanging while trying to download. Eventually it would work, but changing the network adapter as above sorts the problem out.
– Brendon Muir
Aug 6 '16 at 4:04
Worked with Win10 host running Ubuntu 16.10.
– robsn
Dec 12 '16 at 12:48
1
1
Worked for me with Host Ubuntu 14.04 and Guest Ubuntu 12.04.
– ross
Dec 15 '15 at 19:14
Worked for me with Host Ubuntu 14.04 and Guest Ubuntu 12.04.
– ross
Dec 15 '15 at 19:14
1
1
To switch to PCNet Fast III in Vagrantfile, use
v.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
.– Juliusz Gonera
Feb 7 '16 at 18:56
To switch to PCNet Fast III in Vagrantfile, use
v.customize ["modifyvm", :id, "--nictype1", "Am79C973"]
.– Juliusz Gonera
Feb 7 '16 at 18:56
This works great! I was having trouble with
apt-get
hanging while trying to download. Eventually it would work, but changing the network adapter as above sorts the problem out.– Brendon Muir
Aug 6 '16 at 4:04
This works great! I was having trouble with
apt-get
hanging while trying to download. Eventually it would work, but changing the network adapter as above sorts the problem out.– Brendon Muir
Aug 6 '16 at 4:04
Worked with Win10 host running Ubuntu 16.10.
– robsn
Dec 12 '16 at 12:48
Worked with Win10 host running Ubuntu 16.10.
– robsn
Dec 12 '16 at 12:48
add a comment |
@auramo's answer is useful, but please note that it specifies a specific NIC: #1. In my system, for instance, I have numerous Network Interfaces. I had to specify --nictype4
.
As well, others have reported benefits elsewhere of specifying natdnshostresolver#
and natdnsproxy#
where #
is a number identifying your NIC. In mine, it looks like this:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype4", "virtio"]
v.customize ["modifyvm", :id, "--natdnshostresolver4", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy4", "on"]
end
add a comment |
@auramo's answer is useful, but please note that it specifies a specific NIC: #1. In my system, for instance, I have numerous Network Interfaces. I had to specify --nictype4
.
As well, others have reported benefits elsewhere of specifying natdnshostresolver#
and natdnsproxy#
where #
is a number identifying your NIC. In mine, it looks like this:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype4", "virtio"]
v.customize ["modifyvm", :id, "--natdnshostresolver4", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy4", "on"]
end
add a comment |
@auramo's answer is useful, but please note that it specifies a specific NIC: #1. In my system, for instance, I have numerous Network Interfaces. I had to specify --nictype4
.
As well, others have reported benefits elsewhere of specifying natdnshostresolver#
and natdnsproxy#
where #
is a number identifying your NIC. In mine, it looks like this:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype4", "virtio"]
v.customize ["modifyvm", :id, "--natdnshostresolver4", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy4", "on"]
end
@auramo's answer is useful, but please note that it specifies a specific NIC: #1. In my system, for instance, I have numerous Network Interfaces. I had to specify --nictype4
.
As well, others have reported benefits elsewhere of specifying natdnshostresolver#
and natdnsproxy#
where #
is a number identifying your NIC. In mine, it looks like this:
config.vm.provider "virtualbox" do |v|
v.customize ["modifyvm", :id, "--nictype4", "virtio"]
v.customize ["modifyvm", :id, "--natdnshostresolver4", "on"]
v.customize ["modifyvm", :id, "--natdnsproxy4", "on"]
end
answered Dec 10 at 16:47
Offlein
13
13
add a comment |
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f850357%2fhow-to-fix-extremely-slow-virtualbox-network-download-speed%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