Sample code sharing about sudo network permissions under Linux

黄舟
Release: 2017-06-04 11:17:34
Original
1651 people have browsed it

This article mainly introduces the relevant information on the detailed explanation of sudo network permissions under Linux. Friends in need can refer to

The detailed explanation of sudo network permissions under Linux

For servers with a network proxy set up, there is no problem when performing network access under the current user, but when executing commands through sudo, an error of "no network connection" will occur.

Background

For servers with a network proxy set up, there is no problem when performing network access under the current user, but when executing commands through sudo, it will appear. "No network connection" error.

Under normal permissions, wget is successful.

# wget https://github.com
--2016-12-08 09:00:43-- https://github.com/
Connecting to 109.105.113.200:8080... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.html'

2016-12-08 09:01:03 (1.33 KB/s) - ‘index.html' saved [25692]

使用sudo命令后,连接失败。
# sudo wget https://github.com
--2016-12-08 09:01:41-- https://github.com/
Resolving github.com (github.com)... failed: Name or service not known.
wget: unable to resolve host address ‘github.com'
Copy after login

Solution

The reason for this situation is because the sudo command is used to allow ordinary users to use tools with super user privileges, but it does notInheritedfrom environmentVariables. The setting of the network proxy is achieved by setting environment variables such as http_proxy and https_proxy. Therefore, after sudo, the network proxy is lost, and naturally there is no network connection. In order to solve this problem, we need to modify sudo's config file. There are special commands and methods to modify the sudo configuration file

In the sudo configuration file, add Defaults env_keep += "http_proxy https_proxy". This line indicates that when using the sudo command, save the environment variables listed later.

增加配置后,sudo可访问网络。
# sudo wget https://github.com
--2016-12-08 09:02:52-- https://github.com/
Connecting to 109.105.113.200:8080... connected.
Proxy request sent, awaiting response... 200 OK
Length: unspecified [text/html]
Saving to: ‘index.html.1'

2016-12-08 09:02:56 (20.1 KB/s) - ‘index.html.1' saved [25692]
Copy after login

The above is the detailed content of Sample code sharing about sudo network permissions under Linux. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!