植物百科网
当前位置: 首页 农业百科

访问公司内网方法(实现如何访问公司内网资源)

时间:2023-05-25 作者: 小编 阅读量: 1 栏目名: 农业百科

出差的或者休假的小伙伴如果说急需公司内部资料文件该如何实现呢,找同事帮忙传递吗?万一同事有事忙或者恰好这会有事出去了呢。这个时候就想能随时随地的访问公司内部的资源就好了。OpenVPN一个实现VPN的开源软件,OpenVPN是一个健壮的、高度灵活的VPN守护进程。它支持SSL/TLS安全、Ethernetbridging、经由代理的TCP或UDP隧道和NAT。另外,它也支持动态IP地址以及DHCP,可伸缩性足以支持数百或数千用户的使用场景,同时可移植至大多数主流操作系统平台上。

出差的或者休假的小伙伴如果说急需公司内部资料文件该如何实现呢,找同事帮忙传递吗?万一同事有事忙或者恰好这会有事出去了呢。这个时候就想能随时随地的访问公司内部的资源就好了。这个时候你要往下看啦接下来的文章也许能帮助到你

前言简介

VPN是什么:

VPN全称(Virtual Private Network)、中文译为:虚拟私人网络,又称为虚拟专用网络,用于在不安全的线路上安全的传输数据。

OpenVPN

一个实现VPN的开源软件,OpenVPN 是一个健壮的、高度灵活的 VPN 守护进程。它支持 SSL/TLS 安全、Ethernet bridging、经由代理的 TCP 或 UDP 隧道和 NAT。另外,它也支持动态 IP 地址以及DHCP,可伸缩性足以支持数百或数千用户的使用场景,同时可移植至大多数主流操作系统平台上。官网:https://openvpn.net, GitHub地址:https://github.com/OpenVPN/openvpn

OpenVPN示意图

环境配置信息

openvpn server 192.168.154.13 10.0.20.20 web-server1: 10.0.20.100# 操作系统版本:CentOS Linux release 7.9.2009

OpenVPN安装

1、安装openvpn

这里采用yum安装方式来安装openvpn

[root@node03 ~]# yum -y install openvpn

2、安装easy-rsa

从GitHub中下载easy-rsa GitHub地址为 https://github.com/OpenVPN/easy-rsa

2.1、下载easy-rsa包 并解压出来

# 创建目录专用于存放软件包[root@node03 ~]# mkdir /app/openvpn -p[root@node03 openvpn]# wget https://github.com/OpenVPN/easy-rsa/archive/refs/heads/master.zip[root@node03 openvpn]# unzip master.zip[root@node03 openvpn]# mv easy-rsa-master easy-rsa

2.2 配置openvpn

# 拷贝openVPN server配置模板文件到/etc/openvpn目录下[root@node03 openvpn]# cp /usr/share/doc/openvpn-2.4.10/sample/sample-config-files/server.conf/etc/openvpn/# 拷贝证书管理工具到/etc/openvpn下命名为easyrsa-server[root@node03 openvpn]# cp -a easy-rsa /etc/openvpn/easyrsa-server[root@node03 ~]# cd /etc/openvpn/easyrsa-server/[root@node03 easyrsa-server]# cp easyrsa3/vars.example /etc/openvpn/easyrsa-server/easyrsa3/vars# 查看目录结构[root@node03 ~]# cd /etc/openvpn/easyrsa-server/easyrsa3[root@node03 easyrsa3]# tree .├── easyrsa├── openssl-easyrsa.cnf├── vars├── vars.example└── x509-types├── ca├── client├── code-signing├── COMMON├── email├── kdc├── server└── serverClient1 directory, 12 files[root@node03 easyrsa3]## 修改vars配置文件根据自己当前环境配置以下几行[root@node03 easyrsa3]# vim varsset_var EASYRSA_REQ_COUNTRY"CN"set_var EASYRSA_REQ_PROVINCE"Beijing"set_var EASYRSA_REQ_CITY"Haidian"set_var EASYRSA_REQ_ORG"mr.luo"set_var EASYRSA_REQ_EMAIL"admin@root.com"set_var EASYRSA_REQ_OU"My OpenVPN"

3、初始化pki环境和CA签发机构

# 使用pwd查看当前所在路径[root@node03 easyrsa3]# pwd/etc/openvpn/easyrsa-server/easyrsa3# 生成pki目录用于保存证书[root@node03 easyrsa3]# ./easyrsa init-pkiNote: using Easy-RSA configuration from: /etc/openvpn/easyrsa-server/easyrsa3/varsinit-pki complete; you may now create a CA or requests.Your newly created PKI dir is: /etc/openvpn/easyrsa-server/easyrsa3/pki# 查看生成后的pki目录下的文件[root@node03 easyrsa3]# ll pki/total 16-rw------- 1 root root 4616 4月9 02:00openssl-easyrsa.cnfdrwx------ 2 root root38 4月9 02:03 privatedrwx------ 2 root root60 4月9 02:58 reqs-rw------- 1 root root 4750 4月9 02:00 safessl-easyrsa.cnf

4、创建CA机构

# 创建ca证书 如果不想在后续签名中输入密码可以加上nopass 创建ca不使用密码[root@node03 easyrsa3]# ./easyrsa build-caNote: using Easy-RSA configuration from: /etc/openvpn/easyrsa-server/easyrsa3/varsUsing SSL: openssl OpenSSL 1.0.2k-fips26 Jan 2017Enter New CA Key Passphrase: #输入ca的密码Re-Enter New CA Key Passphrase: #再次输入ca的密码Generating RSA private key, 2048 bit long modulus..........................................................................................e is 65537 (0x10001)You are about to be asked to enter information that will be incorporatedinto your certificate request.What you are about to enter is what is called a Distinguished Name or a DN.There are quite a few fields but you can leave some blankFor some fields there will be a default value,If you enter '.', the field will be left blank.-----Common Name (eg: your user, host, or server name) [Easy-RSA CA]: #直接回车CA creation complete and you may now import and sign cert requests.Your new CA certificate file for publishing is at:/etc/openvpn/easyrsa-server/easyrsa3/pki/ca.crt #ca的公钥# 验证CA的公钥[root@node03 easyrsa3]# ll pki/ca.crt -rw------- 1 root root 1172 4月9 02:01 pki/ca.crt# 验证CA的私钥[root@node03 easyrsa3]# ll pki/private/ca.key -rw------- 1 root root 1766 1766 4月9 02:01 pki/private/ca.key

5、创建服务端证书(私钥)

[root@node03 easyrsa3]# ./easyrsa gen-req server nopass #生成server证书且不使用密码Note: using Easy-RSA configuration from: /etc/openvpn/easyrsa-server/easyrsa3/varsUsing SSL: openssl OpenSSL 1.0.2k-fips26 Jan 2017Generating a 2048 bit RSA private key................................................................................................................................................................................... writing new private key to '/etc/openvpn/easyrsa-server/easyrsa3/pki/easy-rsa-15024.cRlqdd #生成证书的临时文件-----You are about to be asked to enter information that will be incorporatedinto your certificate request.What you are about to enter is what is called a Distinguished Name or a DN.There are quite a few fields but you can leave some blankFor some fields there will be a default value,If you enter '.', the field will be left blank.-----Common Name (eg: your user, host, or server name) [server]: #直接回车Keypair and certificate request completed. Your files are:req: /etc/openvpn/easyrsa-server/easyrsa3/pki/reqs/server.req #openvpn server req证书文件key: /etc/openvpn/easyrsa-server/easyrsa3/pki/private/server.key #openvpn 私钥# 验证CA证书[root@node03 easyrsa3]# ll pki/private/总用量 8-rw------- 1 root root 1766 4月9 02:01 ca.key-rw------- 1 root root 1704 4月9 02:03 server.key# 验证req文件[root@node03 easyrsa3]# ll pki/reqs/总用量 4-rw------- 1 root root 887 4月9 02:03 server.req

6、签发服务端证书

使用自建ca签发服务器证书,即生成服务端crt公钥,crt公钥后期将用户发送给客户端,从而实现与openvpn server端加密传输数据。

# 签发服务端证书,备注信息为server[root@node03 easyrsa3]# ./easyrsa sign server serverNote: using Easy-RSA configuration from: /etc/openvpn/easyrsa-server/easyrsa3/varsUsing SSL: openssl OpenSSL 1.0.2k-fips26 Jan 2017You are about to sign the following certificate.Please check over the details shown below for accuracy. Note that this requesthas not been cryptographically verified. Please be sure it came from a trustedsource or that you have verified the request checksum with the sender.Request subject, to be signed as a server certificate for 825 days: #证书有效时长subject=commonName= server #通用名称Type the word 'yes' to continue, or any other input to abort.Confirm request details: yes #输入yes继续Using configuration from /etc/openvpn/easyrsa-server/easyrsa3/pki/easy-rsa-15065.QeDHJH/tmp.L2GwROEnter pass phrase for /etc/openvpn/easyrsa-server/easyrsa3/pki/private/ca.key: #输入ca密码后继续Check that the request matches the signatureSignature okThe Subject's Distinguished Name is as followscommonName:ASN.1 12:'server'Certificate is to be certified until May 23 15:44:06 2022 GMT (825 days)Write out database with 1 new entriesData Base UpdatedCertificate created at: /etc/openvpn/easyrsa-server/easyrsa3/pki/issued/server.crt# 验证生成的服务端公钥[root@node03 easyrsa3]# ll /etc/openvpn/easyrsa-server/easyrsa3/pki/issued/server.crt -rw------- 1 root root 4547 4月9 02:04 /etc/openvpn/easyrsa-server/easyrsa3/pki/issued/server.crt

7、创建Diffie-Hellman

密钥交换方法,由惠特菲尔德·迪菲(Bailey Whitfield Diffie)、马丁·赫尔曼(Martin Edward Hellman)于1976年发表,它是一种安全协议,让双方在完全没有对方任何预先信息的条件下通过不安全信道建立起一个密钥,这个密钥一般作为“对称加密”的密钥而被双方在后续数据传输中使用,DH数学原理是base离散对数问题,做类似事情的还有非对称加密类算法,如:RSA。其应用非常广泛,在SSH、VPN、Https…都有应用,堪称现代密码基石。

[root@node03 easyrsa3]# ./easyrsa gen-dhNote: using Easy-RSA configuration from: /etc/openvpn/easyrsa-server/easyrsa3/varsUsing SSL: openssl OpenSSL 1.0.2k-fips26 Jan 2017Generating DH parameters, 2048 bit long safe prime, generator 2This is going to take a long time....................................................................................... ............................... ...........**DH parameters of size 2048 created at /etc/openvpn/easyrsa-server/easyrsa3/pki/dh.pem# 验证生成的秘钥文件[root@node03 easyrsa3]# ll /etc/openvpn/easyrsa-server/easyrsa3/pki/dh.pem -rw------- 1 root root 424 4月9 02:04 /etc/openvpn/easyrsa-server/easyrsa3/pki/dh.pem

8、创建客户端证书

# 创建客户端证书的存放目录[root@node03 ~]# mkdir /app/openvpn/client -p# 复制客户端配置文件[root@node03 ~]# cp /etc/openvpn/easyrsa-server/ /app/openvpn/client -a# 生成pki目录[root@node03 easyrsa3]# cd /app/openvpn/client/easyrsa-server/easyrsa3[root@node03 easyrsa3]# ./easyrsa init-pkiNote: using Easy-RSA configuration from: /app/openvpn/client/easyrsa-server/easyrsa3/varsWARNING!!!You are about to remove the EASYRSA_PKI at: /app/openvpn/client/easyrsa-server/easyrsa3/pkiand initialize a fresh PKI here.Type the word 'yes' to continue, or any other input to abort.Confirm removal: yesinit-pki complete; you may now create a CA or requests.Your newly created PKI dir is: /app/openvpn/client/easyrsa-server/easyrsa3/pki# 验证pki目录[root@node03 easyrsa3]# ll pki/总用量 16-rw------- 1 root root 4616 4月9 02:06 openssl-easyrsa.cnfdrwx------ 2 root root42 4月9 02:57 privatedrwx------ 2 root root42 4月9 02:57 reqs-rw------- 1 root root 4820 4月9 02:06 safessl-easyrsa.cnf[root@node03 easyrsa3]# ll ./pki/private/总用量 0[root@node03 easyrsa3]# ll ./pki/reqs/总用量 0# 生成客户端证书[root@node03 easyrsa3]# ./easyrsa gen-req mr.luoNote: using Easy-RSA configuration from: /app/openvpn/client/easyrsa-server/easyrsa3/varsUsing SSL: openssl OpenSSL 1.0.2k-fips26 Jan 2017Generating a 2048 bit RSA private key.............................................................................................................................................writing new private key to '/app/openvpn/client/easyrsa-server/easyrsa3/pki/easy-rsa-1774.CZzEA5/tmp.Dfg4Cw'Enter PEM pass phrase: #输入密码Verifying - Enter PEM pass phrase: #再次输入密码-----You are about to be asked to enter information that will be incorporatedinto your certificate request.What you are about to enter is what is called a Distinguished Name or a DN.There are quite a few fields but you can leave some blankFor some fields there will be a default value,If you enter '.', the field will be left blank.-----Common Name (eg: your user, host, or server name) [mr.luo]:Keypair and certificate request completed. Your files are:req: /app/openvpn/client/easyrsa-server/easyrsa3/pki/reqs/mr.luo.reqkey: /app/openvpn/client/easyrsa-server/easyrsa3/pki/private/mr.luo.key# 验证用户证书[root@node03 easyrsa3]# tree pki/pki/├── openssl-easyrsa.cnf├── private│ └── mr.luo.key├── reqs│ └── mr.luo.req└── safessl-easyrsa.cnf2 directories, 4 files

9、签发客户端证书

需要进入到openVPN server目录中签发客户端证书

[root@node03 easyrsa3]# cd /etc/openvpn/easyrsa-server/easyrsa3/# server端导入req文件[root@node03 easyrsa3]# ./easyrsa import-req /app/openvpn/client/easyrsa-server/easyrsa3/pki/reqs/mr.luo.req mr.luoNote: using Easy-RSA configuration from: /etc/openvpn/easyrsa-server/easyrsa3/varsUsing SSL: openssl OpenSSL 1.0.2k-fips26 Jan 2017The request has been successfully imported with a short name of: mr.luoYou may now use this name to perform signing operations on this request.# server端签发客户端证书[root@node03 easyrsa3]# ./easyrsa sign client mr.luoNote: using Easy-RSA configuration from: /etc/openvpn/easyrsa-server/easyrsa3/varsUsing SSL: openssl OpenSSL 1.0.2k-fips26 Jan 2017You are about to sign the following certificate.Please check over the details shown below for accuracy. Note that this requesthas not been cryptographically verified. Please be sure it came from a trustedsource or that you have verified the request checksum with the sender.Request subject, to be signed as a client certificate for 825 days:subject=commonName= mr.luoType the word 'yes' to continue, or any other input to abort.Confirm request details: yesUsing configuration from /etc/openvpn/easyrsa-server/easyrsa3/pki/easy-rsa-1874.R5ptap/tmp.5mEQRTEnter pass phrase for /etc/openvpn/easyrsa-server/easyrsa3/pki/private/ca.key: #输入ca的密码Check that the request matches the signatureSignature okThe Subject's Distinguished Name is as followscommonName:ASN.1 12:'mr.luo'Certificate is to be certified until Jun3 14:50:52 2022 GMT (825 days)Write out database with 1 new entriesData Base UpdatedCertificate created at: /etc/openvpn/easyrsa-server/easyrsa3/pki/issued/mr.luo.crt# 验证签发后的crt证书[root@node03 easyrsa3]# ll /etc/openvpn/easyrsa-server/easyrsa3/pki/issued/mr.luo.crt -rw------- 1 root root 4432 4月9 02:08 /etc/openvpn/easyrsa-server/easyrsa3/pki/issued/mr.luo.crt

10、复制证书到server目录

对签发的服务端证书进行归档保存

# 先创建相对应的目录[root@node03 easyrsa3]# mkdir /etc/openvpn/certs[root@node03 easyrsa3]# cd /etc/openvpn/certs/[root@node03 certs]# cp /etc/openvpn/easyrsa-server/easyrsa3/pki/dh.pem .[root@node03 certs]# cp /etc/openvpn/easyrsa-server/easyrsa3/pki/ca.crt .[root@node03 certs]# cp /etc/openvpn/easyrsa-server/easyrsa3/pki/issued/server.crt .[root@node03 certs]# cp /etc/openvpn/easyrsa-server/easyrsa3/pki/private/server.key .# 验证证书目录下的文件[root@node03 certs]# tree .├── ca.crt├── dh.pem├── server.crt└── server.key0 directories, 4 files

11、客户端公钥和私钥

对签发好的客户端证书进行归档保存

# 创建客户端证书存放目录[root@node03 certs]# mkdir /app/openvpn/client/mr.luo[root@node03 certs]# cd !$cd /app/openvpn/client/mr.luo[root@node03 mr.luo]# ls[root@node03 mr.luo]# cp /etc/openvpn/easyrsa-server/easyrsa3/pki/ca.crt.[root@node03 mr.luo]# cp /etc/openvpn/easyrsa-server/easyrsa3/pki/issued/mr.luo.crt.[root@node03 mr.luo]# cp /app/openvpn/client/easyrsa-server/easyrsa3/pki/private/mr.luo.key.[root@node03 mr.luo]# tree .├── ca.crt├── mr.luo.crt└── mr.luo.key0 directories, 3 files

12、server端配置文件

# 先创建相对应的目录并授权相关用户权限root@node03 mr.luo]# mkdir /var/log/openvpn [root@node03 mr.luo]# chown -R openvpn.openvpn /var/log/openvpn/[root@node03 mr.luo]# chown -R openvpn.openvpn /etc/openvpn/# 编辑openVPN配置文件[root@node03 mr.luo]# vim /etc/openvpn/server.conf# 最终配置[root@node03 mr.luo]# grep "^[a-Z]" /etc/openvpn/server.conf local 192.168.154.13 port 1194proto tcpdev tunca /etc/openvpn/certs/ca.crtcert /etc/openvpn/certs/server.crtkey /etc/openvpn/certs/server.keydh /etc/openvpn/certs/dh.pemserver 10.8.0.0 255.255.255.0push "route 10.0.20.0 255.255.255.0"push "route 192.168.154.0 255.255.255.0"keepalive 10 120cipher AES-256-CBCmax-clients 200user openvpngroup openvpnpersist-keypersist-tunstatus openvpn-status.loglog-append/var/log/openvpn/openvpn.logverb 9mute 20

13、配置iptables规则

# 关闭自带的firewalld服务[root@node03 mr.luo]# systemctl stop firewalld[root@node03 mr.luo]# systemctl disable firewalld# 安装iptables服务如果不安装的话它的规则没法保存[root@node03 mr.luo]# yum install iptables-services iptables -y[root@node03 mr.luo]# systemctl enable iptables.service[root@node03 mr.luo]# systemctl start iptables.service# 清空iptables规则[root@node03 mr.luo]# iptables -F[root@node03 mr.luo]# iptables -X[root@node03 mr.luo]# iptables -Z[root@node03 mr.luo]# iptables -t nat -F[root@node03 mr.luo]# iptables -t nat -X[root@node03 mr.luo]# iptables -t nat -Z[root@node03 mr.luo]# iptables -t nat -A POSTROUTING -s 10.8.0.0/16 -j MASQUERADE[root@node03 mr.luo]# iptables -A INPUT -p TCP --dport 1194 -j ACCEPT[root@node03 mr.luo]# iptables -A INPUT -m state --state ESTABLISHED,RELATED -j ACCEPT[root@node03 mr.luo]# service iptables saveiptables: Saving firewall rules to /etc/sysconfig/iptables:[确定]# 验证防火墙规则[root@node03 mr.luo]# iptables -vnL Chain INPUT (policy ACCEPT 3891 packets, 436K bytes) pkts bytes targetprot opt inoutsourcedestination156K148M ACCEPTtcp--**0.0.0.0/00.0.0.0/0tcp dpt:1194 4408 4939K ACCEPTall--**0.0.0.0/00.0.0.0/0state RELATED,ESTABLISHEDChain FORWARD (policy ACCEPT 276K packets, 162M bytes) pkts bytes targetprot opt inoutsourcedestinationChain OUTPUT (policy ACCEPT 150K packets, 35M bytes) pkts bytes targetprot opt inoutsourcedestination [root@node03 mr.luo]# iptables -t nat -vnLChain PREROUTING (policy ACCEPT 12055 packets, 682K bytes) pkts bytes targetprot opt inoutsourcedestinationChain INPUT (policy ACCEPT 797 packets, 106K bytes) pkts bytes targetprot opt inoutsourcedestinationChain OUTPUT (policy ACCEPT 89 packets, 6583 bytes) pkts bytes targetprot opt inoutsourcedestinationChain POSTROUTING (policy ACCEPT 89 packets, 6583 bytes) pkts bytes targetprot opt inoutsourcedestination8562445K MASQUERADEall--**10.8.0.0/160.0.0.0/0# 开启路由转发功能[root@node03 mr.luo]# vim /etc/sysctl.conf net.ipv4.ip_forward = 1[root@node03 mr.luo]# sysctl -pnet.ipv4.ip_forward = 1# 启动openVPN服务,并设置开机自启动[root@node03 mr.luo]# systemctl start openvpn@server[root@node03 mr.luo]# systemctl enable openvpn@server

14、安装window客户端

安装好之后在安装目录中有个sample-config目录,在里头找到client.opvn模板复制一份到config目录下然后修改其配置文件

client #声明自己是个客户端dev tun #接口类型,必须和服务端保持一致proto tcp #使用的协议,必须和服务端保持一致remote 192.168.154.13 1194 #server端的ip和端口,可以写域名但是需要可以解析成IPresolv-retry infinite nobind persist-key #persist-tunca ca.crtcert mr.luo.crtkey mr.luo.keyremote-cert-tls server #指定采用服务器校验方式#tls-auth ta.key 1cipher AES-256-CBCverb 3

2、从服务器中下载客户端所用的证书文件到config目录中

3、随后启动客户端与服务器端进行连接通信

输入在服务器端设置好的密码即可

客户端登录界面

4、登录后显示的信息

登录成功

5、最后就可以实现与公司之间的内网信息互通啦

    推荐阅读
  • 突触名词解释(突触是什么意思)

    突触名词解释突触是指一个神经元的冲动传到另一个神经元或传到另一细胞间的相互接触的结构。突触是神经元之间在功能上发生联系的部位,也是信息传递的关键部位。在光学显微镜下,可以看到一个神经元的轴突末梢经过多次分支,最后每一小支的末端膨大呈杯状或球状,叫做突触小体。这些突触小体可以与多个神经元的细胞体或树突相接触,形成突触。从电子显微镜下观察,可以看到,这种突触是由突触前膜、突触间隙和突触后膜三部分构成。

  • 《守望先锋》对战局影响大招top一览 守望先锋对局战绩

    今天小编要为大家带来的是玩家“黑呦酱”分享的《守望先锋》对战局影响大招top一览,感兴趣的玩家赶紧一起来看看吧!守望先锋大招分为四类,控制类,自身BUFF类,辅助类以及伤害类,由于伤害类大部分使用大招时,本体无法进行有效杀伤,且控制类及自身BUFF类需要其他技能的配合,so,此间因素也要加入考量。

  • 运动后喝黑咖啡还能燃脂吗 运动时喝黑咖啡会加快燃脂吗?

    2、运动过程中身体脂肪会加速燃烧,从而具有一定减肥作用;而黑咖啡热量比较小,加上其中含有大量的咖啡因以及维生素、纤维素物质,适量喝可以促进人体肠胃蠕动,加速脂肪代谢分解,对减肥具有促进作用。

  • 斯威汽车质量怎么样(斯威质量好不好)

    2018年6月起,斯威“品质特工队”以四大火炉的重庆作为起点,途径海南、吐鲁番、格尔木三地,历时近一年进行了数十万公里极限环境适应性试验。极端干燥高温环境下,常见车内温度往往会狂飙到60℃以上,而在斯威G01的车厢里,却始终能够保持清新凉爽的状态。一整套严酷考验下来,斯威G01的性能表现完全得以充分认证。这样一算,斯威G01差不多完成了近百万公里的专业级严酷考验。

  • 春天兰花怎么养 春天兰花怎么养浇水

    白墨兰花哪个品种最好白墨兰花是墨兰的珍贵变异品种假鳞茎椭圆形,已有数百年栽培历史,流传至今,不下十数个品种,它叶色莹润、体态优雅、幽香静远、且抗病,白墨兰花比较好的品种一般分企剑和软剑两个品系。什么兰花开花最香兰花品种很多,按花香来排,在兰花界春兰居首,惠兰次之,随后便是建兰、墨兰和寒兰,春兰的花香味最正宗,持久性也极强。

  • 奔驰e300l前进挡总共有几个(你看了奔驰22款E300L升级这套原厂HUD抬头显示效果觉得怎么样)

    从行车安全的角度来考虑,加装一台HUD是非常有必要的。HUD的全称是HeadUpDisplay,中文翻译过来就是抬头显示器。今天星骏汇小陈通过以上的产品配件图了解,我们看到这台奔驰22款E300L升级HUD抬头显示所需要更换的配件有,抬显仪器,高配仪表盖板,高配仪表电脑,雨量传感器,空调管升级HUD抬头显示把仪表台上的那一块盖板换掉,换成高配的预留好显示器孔位的盖板,装上显示器,从而使仪表显示的内容投射到挡风玻璃上面。

  • 儿童葫芦丝表演(通城千人共奏葫芦丝)

    儿童葫芦丝表演香城都市报讯 10月27日,通城县隽水中学参加湖北省“黄鹤杯”美育节节目视频录制现场,七、八年级千名学生,同奏乐曲《龙的传人》。该校相关负责人介绍,本学期,每天下午预备铃响5分钟,七、八年级各班集体合奏葫芦丝。丝竹声声,已渐成校园一道靓丽的风景线。近年来,该校贯彻落实社会主义核心价值观,注重未成年人思想道德建设,坚持开设中华传统和特色民族特色教育课程,促进学生“德智体”全面发展。

  • 鸡娃时代孩子的成长之道(与其1岁就开始鸡娃)

    出生时大脑发育已经完成25%,1岁完成了50%,3岁完成了60%,6岁达到90%。现在小学虽然是零基础入学,取消了统一考试,但是它对学生的要求并没有降低。吃够了佛系养娃的亏,橙子家的老二断然不肯再佛系养了。北京卫视于2018年摄制的纪录片《起跑线》中,有一个7岁的北京女孩令人印象深刻。她的家庭,在北京三环内有一套房,一辆车。妈妈认为,孩子从小培养兴趣,靠的是父母的指引。

  • 环氧树脂的作用与用途(环氧树脂有什么作用与用途)

    环氧树脂的作用与用途具有优良的物理和电绝缘性能,强度高、收缩性低,耐腐蚀以及有高绝缘的优势,所以被称为万能胶。电器、电机绝缘封装件的浇注。从常压浇注、真空浇注已发展到自动压力凝胶成型。长时间接触胶水时,有人会有细微的皮肤过敏和细微瘙痒疼痛的情况,建议在运用时戴上防护手套,如果出现了这样的情况,需要用酒精擦洗,然后用清水冲洗干净。

  • 明月曾照江东寒剧情(明月曾照江东寒剧情介绍)

    明月曾照江东寒剧情剧情简介:美少女战清泓是武林副盟主战破敌之女,从小被父亲禁止涉及江湖事。十年一期的武林大会即将来临,战清泓瞒着家人偷跑下山,立志夺取武林盟主之位。战清泓与温宥也开始互生情愫,奈何最终被世俗礼法所阻碍。与此同时,江湖上风起云涌,战清泓发现自己自幼背诵的家训竟是人人趋之若鹜的第一神功《鹤羽剑法》。