




已阅读5页,还剩18页未读, 继续免费阅读
版权说明:本文档由用户提供并上传,收益归属内容提供方,若内容存在侵权,请进行举报或认领
文档简介
OpenVPN HOWTO 中文版OpenVPN HOWTO 介绍此文档描述一个典型的Home到Office的通信中OpenVPN的配置。这份HOWTO举了一个完整的配置实例,在man page手册页中有一个更为简单的例子。此HOWTO文档还有如下格式:PDFPostScript附加的文档其他的一些很好的文档及HOWTO 为不同环境下配置OpenVPN而作。基本的隧道(Tunnel)类型OpenVPN可以创建两种基本的隧道类型:Routed IP tunnels - 适用于不需广播的点对点IP(point-to-point)通信。比起桥接网络隧道来略显得更有效率些而且更易配置。此HOWTO文档涵盖了Routed IP tunnels。Bridged Ethernet Tunnels(桥接网络隧道) - 能用于IP协议或非IP协议的隧道。这种类型的隧道更适合于使用广播(broadcast)的应用,比如某些Windows网络游戏。配置起来稍微复杂 些。关于桥接网络隧道的Mini-HOWTO。Routed IP tunnel HOWTO我们会尝试描述一个完整的系统配置,期间涉及到防火墙,VPN,NAT以及他们彼此间的相互关联,我们不会孤立的一部分一部分的探讨VPN设置。在我们的例子中,Home和Office机器所在的私有网络都分别通过了一台具有公网IP地址的网关机器接入互联网。每台网关机器都配有两块网卡 (NIC),一块联入内网,另一块联入公网。网关机器为内网机器提供NAT,防火墙,VPN服务。Home及Office机器的配置基本一样,除了 Office的网关机器为固定IP,Home机器的IP为DHCP动态获取。在以下例子中所显示的配置文件在OpenVPN发布版本中是有效的。 Home和Office的IP网络参数 Home Office本地子网 (内网地址) /24 /24Tunnel Endpoint (内网地址) OpenVPN Gateway (公网地址) DHCP client, need not be explicitly specified 安装 OpenVPN如果你的系统没有OpenSSL库,你需要 下载和安装它。如果你想使用VPN连接的压缩特性,或者你想将OpenVPN安装为一个RPM包,安装LZO Library。如果你使用Linux 2.2 或更早版本,下载 TUN/TAP driver。对于Linux 2.4.7及以上版本的用户TUN/TAP 驱动已经捆绑到内核中。Linux 2.4.0 - 2.4.6 的用户需要留意INSTALL文件末尾的注意信息。现在下载 OpenVPN 的最新发布版:/openvpn/openvpn-1.6.0.tar.gz使用 tarball 安装解开发布版的压缩包:gzip -dc openvpn-1.6.0.tar.gz | tar xvf -创建 OpenVPN:cd openvpn-1.6.0./configuremakemake install如果你未下载 LZO Library ,将 -disable-lzo 加入到 configure 命令中。也可以启用其他的选型,比如 pthread (./configure -enable-pthread) 用来提高 SSL/TLS 动态密钥交换的响应速度。命令./configure -help将显示所有的配置选型。从 RPM 安装首先创建RPM文件。此操作需要 OpenSSl,pthread,和LZO 库。通常只会有 LZO 库需要额外下载并安装;; 其他的库在大多数的Linux 发行版本中已经作为缺省安装。rpmbuild -tb openvpn-1.6.0.tar.gzRPM 创建过程会生成大量输出信息。创建成功后,在输出信息的末尾附记会有一个提示信息说明生成的二进制RPM文件名。用如下命令安装该文件:rpm -Uvh binary-RPM-file 配置 TUN/TAP 驱动仅需一次的配置如果你使用 Linux 2.4.7 或更高版本,十分幸运 TUN/TAP 驱动已经捆绑到内核中。你可以通过如下命令确认:locate if_tun.h此命令产生类似这样的信息 /usr/include/linux/if_tun.h 。对于 Linux 2.4.7 或更高版本,如果你通过 tarball 安装,输入如下命令配置 TUN/TAP 设备节点(如果你通过 RPM 安装可以忽略这一步,因为RPM为你自动创建该节点):mknod /dev/net/tun c 10 200如果你使用 Linux 2.2,你需要获得 版本 1.1 的TUN/TAP kernel module 并按照安装说明进行操作。 每次系统启动后需要执行一次的配置在 Linux 上使用 OpenVPN 或任何用到 TUN/TAP 设备的程序前需要载入 TUN/TAP kernel module:modprobe tun并且启用 IP 转发:echo 1 /proc/sys/net/ipv4/ip_forward 配置 Firewall 和 NAT这一小节假定你使用 Linux 2.4 和 iptables 防火墙。这里是一个防火墙配置的例子,它为内网机器访问互联网提供了NAT服务,stateful outgoing connection tracking, 和 OpenVPN 支持: -sample-config-files/firewall.sh#!/bin/bash# OpenVPN-aware 防火墙例子.# eth0 连接到互联网.# eth1 连接到内部子网.# 这里改变你的子网地址# Home 使用 /24# Office 使用 /24PRIVATE=/24# Loopback 地址LOOP=# 删除旧的 iptables 规则# 并且临时阻塞网络通信iptables -P OUTPUT DROPiptables -P INPUT DROPiptables -P FORWARD DROPiptables -F# 设置缺省策略iptables -P OUTPUT ACCEPTiptables -P INPUT DROPiptables -P FORWARD DROP# 阻止外部数据包使用 loopback 地址iptables -A INPUT -i eth0 -s $LOOP -j DROPiptables -A FORWARD -i eth0 -s $LOOP -j DROPiptables -A INPUT -i eth0 -d $LOOP -j DROPiptables -A FORWARD -i eth0 -d $LOOP -j DROP# 任何从互联网流入的数据包都必须使用真实互联网地址iptables -A FORWARD -i eth0 -s /16 -j DROPiptables -A FORWARD -i eth0 -s /12 -j DROPiptables -A FORWARD -i eth0 -s /8 -j DROPiptables -A INPUT -i eth0 -s /16 -j DROPiptables -A INPUT -i eth0 -s /12 -j DROPiptables -A INPUT -i eth0 -s /8 -j DROP# 阻塞 NetBios 数据包流出(如果内网有 windows 机器)。# 这不会影响 VPN 隧道上的NetBios通信,# 但它会阻止本地 windows 机器向互联网广播自己。iptables -A FORWARD -p tcp -sport 137:139 -o eth0 -j DROPiptables -A FORWARD -p udp -sport 137:139 -o eth0 -j DROPiptables -A OUTPUT -p tcp -sport 137:139 -o eth0 -j DROPiptables -A OUTPUT -p udp -sport 137:139 -o eth0 -j DROP# 检查流向互联网的数据包中源地址的合法性iptables -A FORWARD -s ! $PRIVATE -i eth1 -j DROP# 允许本地 loopbackiptables -A INPUT -s $LOOP -j ACCEPTiptables -A INPUT -d $LOOP -j ACCEPT# 允许向内的(incoming) ping 操作(可以禁止)iptables -A INPUT -p icmp -icmp-type echo-request -j ACCEPT# 允许 www 和 ssh 服务(可以禁止)iptables -A INPUT -p tcp -dport http -j ACCEPTiptables -A INPUT -p tcp -dport ssh -j ACCEPT# 允许向内的(incoming) OpenVPN 数据包# 对于每条 OpenVPN 隧道要将以下每行重复,# 改变 -dport n 为 OpenVPN UDP 实际端口。# 在 OpenVPN中,端口号由 -port n 选项控制。# 如果你将这个选型写入配置文件,# 你可以去掉 -后这一串字符。# If you taking the stateful firewall# approach (参看 OpenVPN HOWTO),# 那么注释掉下面这一行。iptables -A INPUT -p udp -dport 5000 -j ACCEPT# 允许来自 TUN/TAP 设备的数据包。# 当 OpenVPN 运行于安全模式时,# 他会对 tun 或 tap 接口上的数据包到达前进行验证。# 也就是说,这里添加的任何过滤不是必需的,# 除非你想对有可能溢出隧道的数据包类型进行严格约束。iptables -A INPUT -i tun+ -j ACCEPTiptables -A FORWARD -i tun+ -j ACCEPTiptables -A INPUT -i tap+ -j ACCEPTiptables -A FORWARD -i tap+ -j ACCEPT# 允许来自内网的数据包iptables -A INPUT -i eth1 -j ACCEPTiptables -A FORWARD -i eth1 -j ACCEPT# 保持来自本机和内网数据包的连接状态iptables -A OUTPUT -m state -state NEW -o eth0 -j ACCEPTiptables -A INPUT -m state -state ESTABLISHED,RELATED -j ACCEPTiptables -A FORWARD -m state -state NEW -o eth0 -j ACCEPTiptables -A FORWARD -m state -state ESTABLISHED,RELATED -j ACCEPT# 伪装本地子网iptables -t nat -A POSTROUTING -s $PRIVATE -o eth0 -j MASQUERADEOpenVPN 在防火墙设置中提供少量的附加选项:If both OpenVPN peers reference the other with an explicit -remote option, and stateful firewalls that provide UDP connection tracking (such as iptables) exist between the peers, it is possible to run OpenVPN without any explicit firewall rules, if both peers originate regular pings to each other to keep the connection alive. To do this, simply run OpenVPN with the -remote peer option, and specify -ping 15 to ensure that packets flow over the tunnel at least once every 15 seconds.上面的选项在隧道一端(peer)频繁变更 IP 地址比如说DHCP或拨号时,显得不够方便。在这种情况下,以上简单的防火墙配置将允许任何IP地址通过UDP端口5000(OpenVPN 的缺省UDP端口) 流入数据包。在 OpenVPN 的安全模式下,所有流入隧道的数据或者通过安全验证或者被丢弃,所以它通常被认为是安全的。如 果你选择完全开放 OpenVPN 的 incoming UDP 端口就像上面简单防火墙中的配置一样,你可能会想利用 -tls-auth 选项在 TLS 控制通道上作双倍的验证,同时使用 RSA 密钥和预先分享的密码短语(passphrase)来作为防御 DoS 或 active 攻击的第二道防线。关于-tls-auth 的更多信息,参考 openvpn man page。 创建 RSA 证书和密钥OpenVPN 有两种安全模式,一种基于使用 RSA 证书和密钥的 SSL/TLS,一种使用预先分享的静态密钥。SSL/TLS + RSA 密钥被证明是一种最安全的选择,静态密钥优势则在于简洁。如果你想使用 RSA 密钥,继续往下读。要使用静态密钥,向前跳到 创建预分享静态密钥 一节.我们将使用 openssl 命令创建 RSA 证书和密钥,该命令包含在 OpenSSL 库的发布程序中。RSA 证书是一种公开密钥,在其中还含有其他安全域,比如说证书持有者的 Common Name 或 email 地址。OpenVPN 有能力在进行认证前对这些域进行测试。更多信息参考 openvpn man page 中的 -tls-verify 选项。在我们的例子中遵从 apache 惯例使用 .crt 扩展名表示证书文件,.key 扩展名表示私钥。私钥文件必须安全保管。证书文件可以自由发布共享。选择一台机器比如 Office 作为密钥管理主机。首先编辑文件 /usr/share/ssl/f (这个文件也许在其他地方,可以用 locate f 命令找到它)。你或许会对它作一些修改:建立一个目录作为密钥的工作目录,将 dir 指向它。考虑增加有限期限 default_days 以免你的 VPN 在工作整一年后莫名其妙的终止。设 定 certificate 和 private_key 指向你的根证书 (master certificate authority certificate)和私钥文件(我们马上要生成它)。在下面的例子中,我们假定你的证书文件名为 my-ca.crt,你的私钥文件名为 my-ca.key 。注意文件 index.txt 和 serial。将 index.txt 清空,serial 初始化为包含一个数字序列比如 01.如 果你狂热的追求密钥长度,那可以将 default_bits 增加到2048。 对于打开 pthread 支持(可以后台处理 RSA 密钥)的 OpenVPN 处理2048位的 RSA 密钥是毫无问题的。甚至没有打开 pthread 支持时也可以使用更长的密钥,但你会在隧道中作 SSL/TLS 密钥协商时感觉到响应时间的延迟。这里有一份选择 RSA 密钥长度的很好的文章,参见 April 2002 issue of Bruce Schneiers Crypto-Gram Nf 编辑完后,创建根证书/私钥对(master certificate authority certificate/private-key pair): openssl req -nodes -new -x509 -keyout my-ca.key -out my-ca.crt -days 3650这将会创建一对有效期为十年的根证书/私钥对。 现在为 Home 和 Office 创建 证书/私钥对:openssl req -nodes -new -keyout office.key -out office.csropenssl ca -out office.crt -in office.csropenssl req -nodes -new -keyout home.key -out home.csropenssl ca -out home.crt -in home.csr现在将 home.crt, home.key, 和 my-ca.crt 文件通过安全途径拷贝到 Home 机器上,尽管实际上只有.key 才被认为是应该保密的。现在在 Office 机器上创建 Diffie Hellman 参数,使用下列命令:openssl dhparam -out dh1024.pem 1024如果在 f 中增大了密钥位数,相应的这里也要把 1024 改为 2048。对于偏执狂可以考虑去掉上面 openssl 命令中的-nodes 选项。其结果是对每一个私钥进行口令加密,从而保证当有人攻入你的主机盗走你的私钥时仍有一定的安全性。麻烦的是每次当你使用 OpenVPN 时都需要输入口令。更多信息参考 openvpn man page 中的 -askpass 选项。如果你对手工管理 RSA 密钥觉得困惑,那要指出一点 OpenVPN 可以很好的同任何 X509 证书管理工具或服务包括商业化的 CAs 如 Thawte or Verisign等协同工作。检索 OpenCA 项目可以查看有哪些同证书/密钥管理工具 配合良好的开源项目。另外,OpenVPN 发布版中包含了一组脚本能够简化 RSA 证书和密钥管理。 在 OpenVPN 上使用商业证书(CAs)的重要提示It should be noted that OpenVPNs security model in SSL/TLS mode is oriented toward users who will generate their own root certificate, and hence be their own CA. In SSL/TLS mode, OpenVPN authenticates its peer by checking that the peer-supplied certificate was signed by the CA certificate specified in the -ca option. Like the SSL-based secure web, the security of OpenVPNs SSL/TLS mode rests on the infeasibility of forging a root certificate signature.This authentication procedure works perfectly well if you have generated your own root certificate, but presents a problem if you wish to use the root certificate of a commercial CA such as Thawte. If, for example, you specified Thawtes root certificate in the -ca option, any certificate signed by Thawte would now be able to authenticate with your OpenVPN peer - certainly not what you would want.Luckily there is a solution to this problem in the -tls-verify option. This option will allow you to execute a command to check the contents of a certificate, to fine-tune the selection of which certificate is allowed, and which is not. See the script verify-cn in the sample-scripts subdirectory for an example of how to do this, and also see the man page for the -tls-verify option. 使用 SSL/TLS 模式和 RSA 证书/密钥的配置文件在我们的例子中,我们使用 OpenVPN 配置文件。OpenVPN 允许由命令行或一个或多个配置文件指定参数。在命令行中由-引导的参数在配置文件中是可以忽略-的,命令行中则不行。 设置下列配置文件:-sample-config-files/tls-office.conf# Sample OpenVPN configuration file for# office using SSL/TLS mode and RSA certificates/keys.# # 或 ; 用于表明注释.# 使用 dynamic tun device.# For Linux 2.2 or non-Linux OSes,# 你可以使用显式指明的设备号,比如tun1# OpenVPN 也支持虚拟网络 tap devices;dev tun# is our local VPN endpoint (office).# is our remote VPN endpoint (home).ifconfig # up 脚本将在 VPN 激活时建立路由up ./office.up# 在 SSL/TLS 密钥交换时,Office 作为 server,Home 作为 clienttls-server# Diffie-Hellman Parameters (tls-server only)dh dh1024.pem# Certificate Authority fileca my-ca.crt# Our certificate/public keycert office.crt# Our private keykey office.key# OpenVPN 缺省使用 UDP 端口 5000 .# 每一个 OpenVPN tunnel 必须使用一个不同的端口.# lport 和 rport 被用于指明本地或远程的不同端口; port 5000# 出于安全考虑,初始化后UID 和GID 权限将降为 nobody; user nobody; group nobody# 如果你的OpenVPN支持LZO 压缩,去掉这一行的注释; comp-lzo# 每15秒向远端主机发送一个 UDP ping# stateful firewall connection# alive. Uncomment this# out if you are using a stateful# firewall.; ping 15# Uncomment this section for a more reliable detection when a system# loses its connection. For example, dial-ups or laptops that# travel to other locations.; ping 15; ping-restart 45; ping-timer-rem; persist-tun; persist-key# 信息细节等级# 0 - 除非发生致命错误,否则保持安静。# 1 - 非常安静,但会显示一些非致命网络错误。# 3 - 中等输出,通常情况下的很好选择。# 9 - 非常详细,用于诊断错误。verb 3-sample-config-files/office.up#!/bin/bashroute add -net netmask gw $5-sample-config-files/tls-home.conf# Sample OpenVPN configuration file for# home using SSL/TLS mode and RSA certificates/keys.# # or ; may be used to delimit comments.# Use a dynamic tun device.# For Linux 2.2 or non-Linux OSes,# you may want to use an explicit# unit number such as tun1.# OpenVPN also supports virtual# ethernet tap devices.dev tun# Our OpenVPN peer is the office gateway.remote # is our local VPN endpoint (home).# is our remote VPN endpoint (office).ifconfig # Our up script will establish routes# once the VPN is alive.up ./home.up# 在 SSL/TLS 密钥交换时,Office 作为 server,Home 作为 clienttls-client# Certificate Authority fileca my-ca.crt# Our certificate/public keycert home.crt# Our private keykey home.key# OpenVPN 缺省使用 UDP 端口 5000 .# 每一个 OpenVPN tunnel 必须使用一个不同的端口.# lport 和 rport 被用于指明本地或远程的不同端口; port 5000# 出于安全考虑,初始化后UID 和GID 权限将降为 nobody; user nobody; group nobody# 如果你的OpenVPN支持LZO 压缩,去掉这一行的注释; comp-lzo# 每15秒向远端主机发送一个 UDP ping# stateful firewall connection# alive. Uncomment this# out if you are using a stateful# firewall.; ping 15# Uncomment this section for a more reliable detection when a system# loses its connection. For example, dial-ups or laptops that# travel to other locations.; ping 15; ping-restart 45; ping-timer-rem; persist-tun; persist-key# 信息细节等级# 0 - 除非发生致命错误,否则保持安静。# 1 - 非常安静,但会显示一些非致命网络错误。# 3 - 中等输出,通常情况下的很好选择。# 9 - 非常详细,用于诊断错误。verb 3-sample-config-files/home.up#!/bin/bashroute add -net netmask gw $5 创建一个预分享静态密钥(Pre-Shared Static Key)同 RSA 密钥管理极为不同的是,使用预分享静态密钥是十分简单。The major downside of using static keys is that you give up the notion of perfect forward secrecy, meaning that if an attacker steals your static key, everything that was ever encrypted with it is compromised.使用如下命令生成静态密钥:openvpn -genkey -secret static.key静态密钥文件由ascii组成,就像下面这样:-BEGIN OpenVPN Static key V1-e5e4d6af39289d53171ecc237a8f996a97743d146661405ec724d5913c550a0c30a48e52dfbeceb6e2e7bd4a8357df784609fe35bbe99c32bdf974952ade8fb971c204aaf4f256baeeda7aed4822ff98fd66da2efa9bf8c5e70996353e0f96a9c94c9f9afb17637b283da25cc99b37bf6f7e15b38aedc3e8e6adb40fca5c5463-END OpenVPN Static key V1-一个 OpenVPN 静态密钥包含有足够的熵值,其中512位作为加密键,512位作为身份验证的 HMAC。(An OpenVPN static key file contains enough entropy to key both a 512 bit cipher key and a 512 bit HMAC key for authentication.)通过安全的媒介将 static.key 拷贝到另一端(peer),比如使用scp 或 ssh 中的拷贝、粘贴。 使用预共享静态密钥(Pre-Shared Static Key)的配置文件在我们的例子中,我们使用 OpenVPN 配置文件。OpenVPN 允许由命令行或一个或多个配置文件指定参数。在命令行中由-引导的参数在配置文件中是可以忽略-的,命令行中则不行。 Set up the following configuration files:-sample-config-files/static-office.conf# Sample OpenVPN configuration file for# office using a pre-shared static key.# # or ; may be used to delimit comments.# Use a dynamic tun device.# For Linux 2.2 or non-Linux OSes,# you may want to use an explicit# unit number such as tun1.# OpenVPN also supports virtual# ethernet tap devices.dev tun# is our local VPN endpoint (office).# is our remote VPN endpoint (home).ifconfig # Our up script will establish routes# once the VPN is alive.up ./office.up# Our pre-shared static keysecret static.key# OpenVPN uses UDP port 5000 by default.# Each OpenVPN tunnel must use# a different port number.# lport or rport can be used# to denote different ports# for local and remote.; port 5000# Downgrade UID and GID to# nobody after initialization# for extra security.; user nobody; group nobody# If you built OpenVPN with# LZO compression, uncomment# out the following line.; comp-lzo# Send a UDP ping to remote once# every 15 seconds to keep# stateful firewall connection# alive. Uncomment this# out if you are using a stateful# firewall.; ping 15# Uncomment this section for a more reliable detection when a system# loses its connection. For example, dial-ups or laptops that# travel to other locations.; ping 15; ping-restart 45; ping-timer-rem; persist-tun; persist-key# 信息细节等级# 0 - 除非发生致命错误,否则保持安静。# 1 - 非常安静,但会显示一些非致命网络错误。# 3 - 中等输出,通常情况下的很好选择。# 9 - 非常详细,用于诊断错误。verb 3-sample-config-files/office.up#!/bin/bashroute add -net netmask gw $5-sample-config-files/static-home.conf# Sample OpenVPN configuration file for# home using a pre-shared static key.# # or ; may be used to delimit comments.# Use a dynamic tun device.# For Linux 2.2 or non-Linux OSes,# you may want to use an explicit# unit number such as tun1.# OpenVPN also supports virtual# ethernet tap devices.dev tun# Our OpenVPN peer is the office gateway.remote # is our local VPN endpoint (home).# is our remote VPN endpoint (office).ifconfig # Our up script will establish routes# once the VPN is alive.up ./home.up# Our pre-shared static keysecret static.key# OpenVPN uses UDP port 5000 by default.# Each OpenVPN tunnel must use# a different port number.# lport or rport can be used# to denote different ports# for local and remote.; port 5000# Downgrade UID and GID to# nobody after initialization# for extra security.; user nobody; group nobody# If you built OpenVPN with# LZO compression, uncomment# out the following line.; comp-lzo# Send a UDP ping to remote once# every 15 seconds to keep# stateful firewall connection# alive. Uncomment this# out if you are using a stateful# firewall.; ping 15# Uncomment this section for a more reliable detection when a system# loses its connection. For example, dial-ups or laptops that# travel to other locations.; ping 15; ping-restart 45; ping-timer-rem; persist-tun; persist-key# 信息细节等级# 0 - 除非发生致命错误,否则保持安静。# 1 - 非常安静,但会显示一些非致命网络错误。# 3 - 中等输出,通常情况下的很好选择。# 9 - 非常详细,用于诊断错误。verb 3-sample-config-files/home.up#!/bin/bashroute add -net 10.0
温馨提示
- 1. 本站所有资源如无特殊说明,都需要本地电脑安装OFFICE2007和PDF阅读器。图纸软件为CAD,CAXA,PROE,UG,SolidWorks等.压缩文件请下载最新的WinRAR软件解压。
- 2. 本站的文档不包含任何第三方提供的附件图纸等,如果需要附件,请联系上传者。文件的所有权益归上传用户所有。
- 3. 本站RAR压缩包中若带图纸,网页内容里面会有图纸预览,若没有图纸预览就没有图纸。
- 4. 未经权益所有人同意不得将文件中的内容挪作商业或盈利用途。
- 5. 人人文库网仅提供信息存储空间,仅对用户上传内容的表现方式做保护处理,对用户上传分享的文档内容本身不做任何修改或编辑,并不能对任何下载内容负责。
- 6. 下载文件中如有侵权或不适当内容,请与我们联系,我们立即纠正。
- 7. 本站不保证下载资源的准确性、安全性和完整性, 同时也不承担用户因使用这些下载资源对自己和他人造成任何形式的伤害或损失。
最新文档
- 嘉兴古建施工方案公司(3篇)
- 元旦活动提前方案策划(3篇)
- 栽植黄栌施工方案(3篇)
- 室外采暖外网施工方案(3篇)
- 国风走秀活动方案策划(3篇)
- 铝合金储罐施工方案(3篇)
- 机加工考试题库及答案
- 餐饮组长考试题库及答案
- 老年病护理现状与进展
- 北京市朝阳区2023-2024学年七年级上学期期末考试生物试题含参考答案
- 《国际中文教育概论》课件全套 第1-12章 从对外汉语教学到国际中文教育- 国际中文教育前瞻
- 2024国际贸易重点总结
- 超声引导下神经阻滞
- 2024建筑施工高处作业安全技术规范
- 卫生院风险评估结果报告
- 单片机原理及应用课件
- 低压出线柜安装施工方案
- 4s店汽车维修配件管理制度
- 持续质量改进在中长导管护理中的应用及并发症的预防
- 新建砖砌台阶施工方案
- 拆除围墙砖石结构施工方案
评论
0/150
提交评论