SSH, Webmin, etc. stopped working after CPU upgrade
I upgraded the CPU in my home server: i3-3220T -> E3-1265L V2. The upgrade was succesfull, the server started proerly, however some services stopped working.
I cannot use SSH now. I checked the service is running on the server. I cannot load the page of webmin running on the server on my desktop PC, and have the same issue on localhost.
The new CPU supports AES-NI, the old one did not.
What could I do?
Thank you in advance.
upgrade ssh cpu
add a comment |
I upgraded the CPU in my home server: i3-3220T -> E3-1265L V2. The upgrade was succesfull, the server started proerly, however some services stopped working.
I cannot use SSH now. I checked the service is running on the server. I cannot load the page of webmin running on the server on my desktop PC, and have the same issue on localhost.
The new CPU supports AES-NI, the old one did not.
What could I do?
Thank you in advance.
upgrade ssh cpu
run ssh in verbose mode by giving it parm -vv as inssh -vv foo@bar
to see why ssh fails ... on your machine where you issue ssh from issue ...ssh-add -l
to list keys may be you just need to add your key or usessh -i ~/.ssh/mykeyname --vv foo@bar
– Scott Stensland
Nov 29 at 20:29
The desktop PC runs Windows10 and I use PuTTY for SSH.
– Ferenc Németh
Nov 29 at 20:36
your ssh client must have a verbose mode
– Scott Stensland
Nov 29 at 20:40
It has logging mode, but all I got: "Connection timed out."
– Ferenc Németh
Nov 29 at 21:02
add a comment |
I upgraded the CPU in my home server: i3-3220T -> E3-1265L V2. The upgrade was succesfull, the server started proerly, however some services stopped working.
I cannot use SSH now. I checked the service is running on the server. I cannot load the page of webmin running on the server on my desktop PC, and have the same issue on localhost.
The new CPU supports AES-NI, the old one did not.
What could I do?
Thank you in advance.
upgrade ssh cpu
I upgraded the CPU in my home server: i3-3220T -> E3-1265L V2. The upgrade was succesfull, the server started proerly, however some services stopped working.
I cannot use SSH now. I checked the service is running on the server. I cannot load the page of webmin running on the server on my desktop PC, and have the same issue on localhost.
The new CPU supports AES-NI, the old one did not.
What could I do?
Thank you in advance.
upgrade ssh cpu
upgrade ssh cpu
asked Nov 29 at 19:59
Ferenc Németh
1
1
run ssh in verbose mode by giving it parm -vv as inssh -vv foo@bar
to see why ssh fails ... on your machine where you issue ssh from issue ...ssh-add -l
to list keys may be you just need to add your key or usessh -i ~/.ssh/mykeyname --vv foo@bar
– Scott Stensland
Nov 29 at 20:29
The desktop PC runs Windows10 and I use PuTTY for SSH.
– Ferenc Németh
Nov 29 at 20:36
your ssh client must have a verbose mode
– Scott Stensland
Nov 29 at 20:40
It has logging mode, but all I got: "Connection timed out."
– Ferenc Németh
Nov 29 at 21:02
add a comment |
run ssh in verbose mode by giving it parm -vv as inssh -vv foo@bar
to see why ssh fails ... on your machine where you issue ssh from issue ...ssh-add -l
to list keys may be you just need to add your key or usessh -i ~/.ssh/mykeyname --vv foo@bar
– Scott Stensland
Nov 29 at 20:29
The desktop PC runs Windows10 and I use PuTTY for SSH.
– Ferenc Németh
Nov 29 at 20:36
your ssh client must have a verbose mode
– Scott Stensland
Nov 29 at 20:40
It has logging mode, but all I got: "Connection timed out."
– Ferenc Németh
Nov 29 at 21:02
run ssh in verbose mode by giving it parm -vv as in
ssh -vv foo@bar
to see why ssh fails ... on your machine where you issue ssh from issue ... ssh-add -l
to list keys may be you just need to add your key or use ssh -i ~/.ssh/mykeyname --vv foo@bar
– Scott Stensland
Nov 29 at 20:29
run ssh in verbose mode by giving it parm -vv as in
ssh -vv foo@bar
to see why ssh fails ... on your machine where you issue ssh from issue ... ssh-add -l
to list keys may be you just need to add your key or use ssh -i ~/.ssh/mykeyname --vv foo@bar
– Scott Stensland
Nov 29 at 20:29
The desktop PC runs Windows10 and I use PuTTY for SSH.
– Ferenc Németh
Nov 29 at 20:36
The desktop PC runs Windows10 and I use PuTTY for SSH.
– Ferenc Németh
Nov 29 at 20:36
your ssh client must have a verbose mode
– Scott Stensland
Nov 29 at 20:40
your ssh client must have a verbose mode
– Scott Stensland
Nov 29 at 20:40
It has logging mode, but all I got: "Connection timed out."
– Ferenc Németh
Nov 29 at 21:02
It has logging mode, but all I got: "Connection timed out."
– Ferenc Németh
Nov 29 at 21:02
add a comment |
1 Answer
1
active
oldest
votes
You are on windows however it must have similar tools to these ubuntu desktop commands ... issue this to view all IP visible maybe your ubuntu server IP address changed
sudo apt-get install arp-scan
sudo arp-scan
top line of output will show your network interface something like
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
lets call it XXXXXX (its possibly wlp2s0) now use that
sudo arp-scan -I XXXXXX -l
in my case I use
sudo arp-scan -I wlp2s0 -l
its output is
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
Starting arp-scan 1.9.5 with 256 hosts (https://github.com/royhills/arp-scan)
192.168.1.1 00:23:69:9e:ae:7d Cisco-Linksys, LLC
192.168.1.101 94:0e:6b:07:43:d5 (Unknown)
192.168.1.104 f4:8c:50:9f:e0:34 (Unknown)
3 packets received by filter, 0 packets dropped by kernel
Ending arp-scan 1.9.5: 256 hosts scanned in 2.574 seconds (99.46 hosts/sec). 3 responded
What we are doing here is listing all IP visible to your laptop which should list your ubuntu server ... assure the IP listed is the one you are ssh into perhaps it got a new IP
Hi, the IP address is the same, I have samba service on the server, and it's running properly. I can reach my folders using the server's IP address. And the webmin fails to load on localhost (on the server), as well. I think the issue is caused somehow by the SSL service. The new CPU supports AES-NI. The server says(rdrand) Intel RDRAND engine
if I check the openssl engine, and the internet says it should be(aesni) Intel AES-NI engine
.
– Ferenc Németh
Nov 30 at 19:06
Ok, your suggestion partially helped. I had another network issue, independent from the CPU upgrade. It just happened at the same time. So the SSH is working now, but still have problems with webmin.
– Ferenc Németh
Nov 30 at 20:31
Purged and reinstalled webmin. Working now. Do not know what happened to it.
– Ferenc Németh
Nov 30 at 21:05
@FerencNémeth sweet - have fun
– Scott Stensland
Nov 30 at 21:17
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "89"
};
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%2faskubuntu.com%2fquestions%2f1097239%2fssh-webmin-etc-stopped-working-after-cpu-upgrade%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
You are on windows however it must have similar tools to these ubuntu desktop commands ... issue this to view all IP visible maybe your ubuntu server IP address changed
sudo apt-get install arp-scan
sudo arp-scan
top line of output will show your network interface something like
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
lets call it XXXXXX (its possibly wlp2s0) now use that
sudo arp-scan -I XXXXXX -l
in my case I use
sudo arp-scan -I wlp2s0 -l
its output is
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
Starting arp-scan 1.9.5 with 256 hosts (https://github.com/royhills/arp-scan)
192.168.1.1 00:23:69:9e:ae:7d Cisco-Linksys, LLC
192.168.1.101 94:0e:6b:07:43:d5 (Unknown)
192.168.1.104 f4:8c:50:9f:e0:34 (Unknown)
3 packets received by filter, 0 packets dropped by kernel
Ending arp-scan 1.9.5: 256 hosts scanned in 2.574 seconds (99.46 hosts/sec). 3 responded
What we are doing here is listing all IP visible to your laptop which should list your ubuntu server ... assure the IP listed is the one you are ssh into perhaps it got a new IP
Hi, the IP address is the same, I have samba service on the server, and it's running properly. I can reach my folders using the server's IP address. And the webmin fails to load on localhost (on the server), as well. I think the issue is caused somehow by the SSL service. The new CPU supports AES-NI. The server says(rdrand) Intel RDRAND engine
if I check the openssl engine, and the internet says it should be(aesni) Intel AES-NI engine
.
– Ferenc Németh
Nov 30 at 19:06
Ok, your suggestion partially helped. I had another network issue, independent from the CPU upgrade. It just happened at the same time. So the SSH is working now, but still have problems with webmin.
– Ferenc Németh
Nov 30 at 20:31
Purged and reinstalled webmin. Working now. Do not know what happened to it.
– Ferenc Németh
Nov 30 at 21:05
@FerencNémeth sweet - have fun
– Scott Stensland
Nov 30 at 21:17
add a comment |
You are on windows however it must have similar tools to these ubuntu desktop commands ... issue this to view all IP visible maybe your ubuntu server IP address changed
sudo apt-get install arp-scan
sudo arp-scan
top line of output will show your network interface something like
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
lets call it XXXXXX (its possibly wlp2s0) now use that
sudo arp-scan -I XXXXXX -l
in my case I use
sudo arp-scan -I wlp2s0 -l
its output is
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
Starting arp-scan 1.9.5 with 256 hosts (https://github.com/royhills/arp-scan)
192.168.1.1 00:23:69:9e:ae:7d Cisco-Linksys, LLC
192.168.1.101 94:0e:6b:07:43:d5 (Unknown)
192.168.1.104 f4:8c:50:9f:e0:34 (Unknown)
3 packets received by filter, 0 packets dropped by kernel
Ending arp-scan 1.9.5: 256 hosts scanned in 2.574 seconds (99.46 hosts/sec). 3 responded
What we are doing here is listing all IP visible to your laptop which should list your ubuntu server ... assure the IP listed is the one you are ssh into perhaps it got a new IP
Hi, the IP address is the same, I have samba service on the server, and it's running properly. I can reach my folders using the server's IP address. And the webmin fails to load on localhost (on the server), as well. I think the issue is caused somehow by the SSL service. The new CPU supports AES-NI. The server says(rdrand) Intel RDRAND engine
if I check the openssl engine, and the internet says it should be(aesni) Intel AES-NI engine
.
– Ferenc Németh
Nov 30 at 19:06
Ok, your suggestion partially helped. I had another network issue, independent from the CPU upgrade. It just happened at the same time. So the SSH is working now, but still have problems with webmin.
– Ferenc Németh
Nov 30 at 20:31
Purged and reinstalled webmin. Working now. Do not know what happened to it.
– Ferenc Németh
Nov 30 at 21:05
@FerencNémeth sweet - have fun
– Scott Stensland
Nov 30 at 21:17
add a comment |
You are on windows however it must have similar tools to these ubuntu desktop commands ... issue this to view all IP visible maybe your ubuntu server IP address changed
sudo apt-get install arp-scan
sudo arp-scan
top line of output will show your network interface something like
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
lets call it XXXXXX (its possibly wlp2s0) now use that
sudo arp-scan -I XXXXXX -l
in my case I use
sudo arp-scan -I wlp2s0 -l
its output is
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
Starting arp-scan 1.9.5 with 256 hosts (https://github.com/royhills/arp-scan)
192.168.1.1 00:23:69:9e:ae:7d Cisco-Linksys, LLC
192.168.1.101 94:0e:6b:07:43:d5 (Unknown)
192.168.1.104 f4:8c:50:9f:e0:34 (Unknown)
3 packets received by filter, 0 packets dropped by kernel
Ending arp-scan 1.9.5: 256 hosts scanned in 2.574 seconds (99.46 hosts/sec). 3 responded
What we are doing here is listing all IP visible to your laptop which should list your ubuntu server ... assure the IP listed is the one you are ssh into perhaps it got a new IP
You are on windows however it must have similar tools to these ubuntu desktop commands ... issue this to view all IP visible maybe your ubuntu server IP address changed
sudo apt-get install arp-scan
sudo arp-scan
top line of output will show your network interface something like
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
lets call it XXXXXX (its possibly wlp2s0) now use that
sudo arp-scan -I XXXXXX -l
in my case I use
sudo arp-scan -I wlp2s0 -l
its output is
Interface: wlp2s0, datalink type: EN10MB (Ethernet)
Starting arp-scan 1.9.5 with 256 hosts (https://github.com/royhills/arp-scan)
192.168.1.1 00:23:69:9e:ae:7d Cisco-Linksys, LLC
192.168.1.101 94:0e:6b:07:43:d5 (Unknown)
192.168.1.104 f4:8c:50:9f:e0:34 (Unknown)
3 packets received by filter, 0 packets dropped by kernel
Ending arp-scan 1.9.5: 256 hosts scanned in 2.574 seconds (99.46 hosts/sec). 3 responded
What we are doing here is listing all IP visible to your laptop which should list your ubuntu server ... assure the IP listed is the one you are ssh into perhaps it got a new IP
answered Nov 30 at 15:41
Scott Stensland
4,66042240
4,66042240
Hi, the IP address is the same, I have samba service on the server, and it's running properly. I can reach my folders using the server's IP address. And the webmin fails to load on localhost (on the server), as well. I think the issue is caused somehow by the SSL service. The new CPU supports AES-NI. The server says(rdrand) Intel RDRAND engine
if I check the openssl engine, and the internet says it should be(aesni) Intel AES-NI engine
.
– Ferenc Németh
Nov 30 at 19:06
Ok, your suggestion partially helped. I had another network issue, independent from the CPU upgrade. It just happened at the same time. So the SSH is working now, but still have problems with webmin.
– Ferenc Németh
Nov 30 at 20:31
Purged and reinstalled webmin. Working now. Do not know what happened to it.
– Ferenc Németh
Nov 30 at 21:05
@FerencNémeth sweet - have fun
– Scott Stensland
Nov 30 at 21:17
add a comment |
Hi, the IP address is the same, I have samba service on the server, and it's running properly. I can reach my folders using the server's IP address. And the webmin fails to load on localhost (on the server), as well. I think the issue is caused somehow by the SSL service. The new CPU supports AES-NI. The server says(rdrand) Intel RDRAND engine
if I check the openssl engine, and the internet says it should be(aesni) Intel AES-NI engine
.
– Ferenc Németh
Nov 30 at 19:06
Ok, your suggestion partially helped. I had another network issue, independent from the CPU upgrade. It just happened at the same time. So the SSH is working now, but still have problems with webmin.
– Ferenc Németh
Nov 30 at 20:31
Purged and reinstalled webmin. Working now. Do not know what happened to it.
– Ferenc Németh
Nov 30 at 21:05
@FerencNémeth sweet - have fun
– Scott Stensland
Nov 30 at 21:17
Hi, the IP address is the same, I have samba service on the server, and it's running properly. I can reach my folders using the server's IP address. And the webmin fails to load on localhost (on the server), as well. I think the issue is caused somehow by the SSL service. The new CPU supports AES-NI. The server says
(rdrand) Intel RDRAND engine
if I check the openssl engine, and the internet says it should be (aesni) Intel AES-NI engine
.– Ferenc Németh
Nov 30 at 19:06
Hi, the IP address is the same, I have samba service on the server, and it's running properly. I can reach my folders using the server's IP address. And the webmin fails to load on localhost (on the server), as well. I think the issue is caused somehow by the SSL service. The new CPU supports AES-NI. The server says
(rdrand) Intel RDRAND engine
if I check the openssl engine, and the internet says it should be (aesni) Intel AES-NI engine
.– Ferenc Németh
Nov 30 at 19:06
Ok, your suggestion partially helped. I had another network issue, independent from the CPU upgrade. It just happened at the same time. So the SSH is working now, but still have problems with webmin.
– Ferenc Németh
Nov 30 at 20:31
Ok, your suggestion partially helped. I had another network issue, independent from the CPU upgrade. It just happened at the same time. So the SSH is working now, but still have problems with webmin.
– Ferenc Németh
Nov 30 at 20:31
Purged and reinstalled webmin. Working now. Do not know what happened to it.
– Ferenc Németh
Nov 30 at 21:05
Purged and reinstalled webmin. Working now. Do not know what happened to it.
– Ferenc Németh
Nov 30 at 21:05
@FerencNémeth sweet - have fun
– Scott Stensland
Nov 30 at 21:17
@FerencNémeth sweet - have fun
– Scott Stensland
Nov 30 at 21:17
add a comment |
Thanks for contributing an answer to Ask Ubuntu!
- 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%2faskubuntu.com%2fquestions%2f1097239%2fssh-webmin-etc-stopped-working-after-cpu-upgrade%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
run ssh in verbose mode by giving it parm -vv as in
ssh -vv foo@bar
to see why ssh fails ... on your machine where you issue ssh from issue ...ssh-add -l
to list keys may be you just need to add your key or usessh -i ~/.ssh/mykeyname --vv foo@bar
– Scott Stensland
Nov 29 at 20:29
The desktop PC runs Windows10 and I use PuTTY for SSH.
– Ferenc Németh
Nov 29 at 20:36
your ssh client must have a verbose mode
– Scott Stensland
Nov 29 at 20:40
It has logging mode, but all I got: "Connection timed out."
– Ferenc Németh
Nov 29 at 21:02