国产片侵犯亲女视频播放_亚洲精品二区_在线免费国产视频_欧美精品一区二区三区在线_少妇久久久_在线观看av不卡

服務(wù)器之家:專注于服務(wù)器技術(shù)及軟件下載分享
分類導(dǎo)航

云服務(wù)器|WEB服務(wù)器|FTP服務(wù)器|郵件服務(wù)器|虛擬主機(jī)|服務(wù)器安全|DNS服務(wù)器|服務(wù)器知識|Nginx|IIS|Tomcat|

服務(wù)器之家 - 服務(wù)器技術(shù) - 服務(wù)器知識 - KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

2021-11-23 17:05天外來物_ 服務(wù)器知識

這篇文章主要為大家介紹了KVM虛擬化,kvm的安裝部署及管理教程,文中示例過程 非常詳細(xì),有需要的朋友可以借鑒參考下,希望能夠有所幫助

目錄
  • 1.kvm部署
    • 1.1 kvm安裝
    • 1.2 kvm web管理界面安裝
    • 1.3 kvm web界面管理
      • 1.3.1 kvm連接管理
      • 1.3.2 kvm存儲管理
      • 1.3.3 kvm網(wǎng)絡(luò)管理
      • 1.3.4 實(shí)例管理
  • 故障

1.kvm部署

 

1.1 kvm安裝

  1. //關(guān)閉防火墻和selinux
  2. [root@kvm ~]# systemctl disable --now firewalld.service
  3. Removed /etc/systemd/system/multi-user.target.wants/firewalld.service.
  4. Removed /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
  5. [root@kvm ~]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/g' /etc/selinux/config
  6. [root@kvm ~]# reboot
  7.  
  8. //下載epel源和工具包
  9. [root@kvm ~]# yum -y install epel-release vim wget net-tools unzip zip gcc gcc-c++
  10.  
  11. //驗(yàn)證CPU是否支持KVM;如果結(jié)果中有vmx(Intel)或svm(AMD)字樣,就說明CPU的支持的
  12. [root@kvm ~]# egrep -o 'vmx|svm' /proc/cpuinfo
  13.  
  14. //安裝kvm
  15. [root@kvm ~]# yum -y install qemu-kvm qemu-kvm-tools qemu-img virt-manager libvirt libvirt-python libvirt-client virt-install virt-viewer bridge-utils libguestfs-tools
  16.  
  17. //橋接網(wǎng)卡,用br0來橋接ens160網(wǎng)卡
  18. [root@kvm ~]# cd /etc/sysconfig/network-scripts/
  19. [root@kvm network-scripts]# cp ifcfg-ens33 ifcfg-br0
  20. [root@kvm network-scripts]# cat ifcfg-br0
  21. TYPE=Bridge
  22. DEVICE=br0
  23. NM_CONTROLLED=no
  24. BOOTPROTO=static
  25. NAME=br0
  26. ONBOOT=yes
  27. IPADDR=192.168.237.131
  28. NETMASK=255.255.255.0
  29. GATEWAY=192.168.237.2
  30. DNS1=114.114.114.114
  31. DNS2=8.8.8.8
  32. [root@kvm network-scripts]# cat ifcfg-ens33
  33. TYPE=Ethernet
  34. BOOTPROTO=static
  35. NAME=ens33
  36. DEVICE=ens33
  37. ONBOOT=yes
  38. BRIDGE=br0
  39. NM_CONTROLLED=no
  40.  
  41. //重啟網(wǎng)絡(luò)
  42. [root@kvm ~]# systemctl restart network
  43. [root@kvm ~]# ip a
  44. 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
  45. link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
  46. inet 127.0.0.1/8 scope host lo
  47. valid_lft forever preferred_lft forever
  48. inet6 ::1/128 scope host
  49. valid_lft forever preferred_lft forever
  50. 2: ens33: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast master br0 state UP group default qlen 1000
  51. link/ether 00:0c:29:7b:10:a5 brd ff:ff:ff:ff:ff:ff
  52. inet6 fe80::20c:29ff:fe7b:10a5/64 scope link
  53. valid_lft forever preferred_lft forever
  54. 3: br0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc noqueue state UP group default qlen 1000
  55. link/ether 00:0c:29:7b:10:a5 brd ff:ff:ff:ff:ff:ff
  56. inet 192.168.237.131/24 brd 192.168.237.255 scope global br0
  57. valid_lft forever preferred_lft forever
  58. inet6 fe80::20c:29ff:fe7b:10a5/64 scope link
  59. valid_lft forever preferred_lft forever
  60. 4: virbr0: <NO-CARRIER,BROADCAST,MULTICAST,UP> mtu 1500 qdisc noqueue state DOWN group default qlen 1000
  61. link/ether 52:54:00:1c:33:d6 brd ff:ff:ff:ff:ff:ff
  62. inet 192.168.122.1/24 brd 192.168.122.255 scope global virbr0
  63. valid_lft forever preferred_lft forever
  64. 5: virbr0-nic: <BROADCAST,MULTICAST> mtu 1500 qdisc pfifo_fast master virbr0 state DOWN group default qlen 1000
  65. link/ether 52:54:00:1c:33:d6 brd ff:ff:ff:ff:ff:ff
  66.  
  67. //啟動服務(wù)
  68. [root@kvm ~]# systemctl enable --now libvirtd
  69.  
  70. //驗(yàn)證安裝結(jié)果
  71. [root@kvm ~]# lsmod|grep kvm
  72. kvm_intel 188740 0
  73. kvm 637289 1 kvm_intel
  74. irqbypass 13503 1 kvm
  75.  
  76. //測試
  77. [root@kvm ~]# virsh -c qemu:///system list
  78. Id 名稱 狀態(tài)
  79. ----------------------------------------------------
  80.  
  81. [root@kvm ~]# virsh --version
  82. 4.5.0
  83. [root@kvm ~]# virt-install --version
  84. 1.5.0
  85. [root@kvm ~]# ln -s /usr/libexec/qemu-kvm /usr/bin/qemu-kvm
  86. [root@kvm ~]# ll /usr/bin/qemu-kvm
  87. lrwxrwxrwx 1 root root 21 10 20 23:14 /usr/bin/qemu-kvm -> /usr/libexec/qemu-kvm
  88.  
  89. //查看網(wǎng)橋信息
  90. [root@kvm ~]# brctl show
  91. bridge name bridge id STP enabled interfaces
  92. br0 8000.000c297b10a5 no ens33
  93. virbr0 8000.5254001c33d6 yes virbr0-nic

1.2 kvm web管理界面安裝

kvm 的 web 管理界面是由 webvirtmgr 程序提供的。

  1. //安裝依賴包
  2. [root@kvm ~]# yum -y install git python-pip libvirt-python libxml2-python python-websockify supervisor nginx python-devel
  3. //從github上下載webvirtmgr代碼
  4. [root@kvm ~]# cd /usr/local/src/
  5. [root@kvm src]# git clone git://github.com/retspen/webvirtmgr.git
  6. 正克隆到 'webvirtmgr'...
  7. remote: Enumerating objects: 5614, done.
  8. remote: Total 5614 (delta 0), reused 0 (delta 0), pack-reused 5614
  9. 接收對象中: 100% (5614/5614), 2.97 MiB | 29.00 KiB/s, done.
  10. 處理 delta 中: 100% (3606/3606), done.
  11. //安裝webvirtmgr
  12. [root@kvm src]# cd webvirtmgr/
  13. [root@kvm webvirtmgr]# pip install -r requirements.txt
  14. Collecting django==1.5.5 (from -r requirements.txt (line 1))
  15. Downloading https://files.pythonhosted.org/packages/38/49/93511c5d3367b6b21fc2995a0e53399721afc15e4cd6eb57be879ae13ad4/Django-1.5.5.tar.gz (8.1MB)
  16. 100% |████████████████████████████████| 8.1MB 49kB/s
  17. ......
  18. //檢查sqlite3是否安裝
  19. [root@kvm webvirtmgr]# python
  20. Python 2.7.5 (default, Nov 16 2020, 22:23:17)
  21. [GCC 4.8.5 20150623 (Red Hat 4.8.5-44)] on linux2
  22. Type "help", "copyright", "credits" or "license" for more information.
  23. >>> import sqlite3
  24. >>> exit()
  25. //初始化賬號信息
  26. [root@kvm webvirtmgr]# python manage.py syncdb
  27. WARNING:root:No local_settings file found.
  28. Creating tables ...
  29. Creating table auth_permission
  30. Creating table auth_group_permissions
  31. Creating table auth_group
  32. Creating table auth_user_groups
  33. Creating table auth_user_user_permissions
  34. Creating table auth_user
  35. Creating table django_content_type
  36. Creating table django_session
  37. Creating table django_site
  38. Creating table servers_compute
  39. Creating table instance_instance
  40. Creating table create_flavor
  41. You just installed Django's auth system, which means you don't have any superusers defined.
  42. Would you like to create one now? (yes/no): yes
  43. Username (leave blank to use 'root'): admin
  44. Email address: 123@qq.com
  45. Password:
  46. Password (again):
  47. Superuser created successfully.
  48. Installing custom SQL ...
  49. Installing indexes ...
  50. Installed 6 object(s) from 1 fixture(s)
  51. //拷貝web網(wǎng)頁至指定目錄
  52. [root@kvm webvirtmgr]# mkdir /var/www
  53. [root@kvm webvirtmgr]# cp -r /usr/local/src/webvirtmgr /var/www/
  54. [root@kvm webvirtmgr]# chown -R nginx.nginx /var/www/webvirtmgr/
  55. //生成密鑰
  56. [root@kvm ~]# ssh-keygen -t rsa
  57. Generating public/private rsa key pair.
  58. Enter file in which to save the key (/root/.ssh/id_rsa):
  59. Created directory '/root/.ssh'.
  60. Enter passphrase (empty for no passphrase):
  61. Enter same passphrase again:
  62. Your identification has been saved in /root/.ssh/id_rsa.
  63. Your public key has been saved in /root/.ssh/id_rsa.pub.
  64. The key fingerprint is:
  65. SHA256:icyLAYmyxABKsogsIHmJqGjSby0ogFwf1p2zeiPwuxY root@kvm
  66. The key's randomart image is:
  67. +---[RSA 2048]----+
  68. |O+ . . . . |
  69. |/ooo o . + |
  70. |&*+ o . o |
  71. |X+.. = . o |
  72. |= o..* S |
  73. |. . +o.E o |
  74. | . .... = . |
  75. | o |
  76. | ... |
  77. +----[SHA256]-----+
  78. [root@kvm ~]# ssh-copy-id 192.168.237.131
  79. /usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"
  80. The authenticity of host '192.168.237.131 (192.168.237.131)' can't be established.
  81. ECDSA key fingerprint is SHA256:/AR9dYUN0PN9LOHYWfHeUe5LgyczVMH9mYv9+2GcAbM.
  82. ECDSA key fingerprint is MD5:30:f6:de:5a:7d:c2:08:b5:b7:31:61:4a:4e:dd:32:73.
  83. Are you sure you want to continue connecting (yes/no)? yes
  84. /usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
  85. /usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
  86. root@192.168.237.131's password:
  87. Number of key(s) added: 1
  88. Now try logging into the machine, with: "ssh '192.168.237.131'"
  89. and check to make sure that only the key(s) you wanted were added.
  90. //配置端口轉(zhuǎn)發(fā)
  91. [root@kvm ~]# ssh 192.168.237.131 -L localhost:8000:localhost:8000 -L localhost:6080:localhost:60
  92. Last login: Wed Oct 20 23:12:00 2021 from 192.168.237.1
  93. [root@kvm ~]# ss -anlt
  94. State Recv-Q Send-Q Local Address:Port Peer Address:Port
  95. LISTEN 0 128 127.0.0.1:6080 *:*
  96. LISTEN 0 128 127.0.0.1:8000 *:*
  97. LISTEN 0 128 *:111 *:*
  98. LISTEN 0 5 192.168.122.1:53 *:*
  99. LISTEN 0 128 *:22 *:*
  100. LISTEN 0 100 127.0.0.1:25 *:*
  101. LISTEN 0 128 [::1]:6080 [::]:*
  102. LISTEN 0 128 [::1]:8000 [::]:*
  103. LISTEN 0 128 [::]:111 [::]:*
  104. LISTEN 0 128 [::]:22 [::]:*
  105. LISTEN 0 100 [::1]:25 [::]:*
  106. //配置nginx
  107. [root@kvm ~]# cd /etc/nginx/
  108. [root@kvm nginx]# ls
  109. conf.d fastcgi_params mime.types scgi_params win-utf
  110. default.d fastcgi_params.default mime.types.default scgi_params.default
  111. fastcgi.conf koi-utf nginx.conf uwsgi_params
  112. fastcgi.conf.default koi-win nginx.conf.default uwsgi_params.default
  113. [root@kvm nginx]# cp nginx.conf nginx.conf-bak //備份
  114. [root@kvm nginx]# cat nginx.conf
  115. user nginx;
  116. worker_processes auto;
  117. error_log /var/log/nginx/error.log;
  118. pid /run/nginx.pid;
  119. include /usr/share/nginx/modules/*.conf;
  120. events {
  121. worker_connections 1024;
  122. }
  123. http {
  124. log_format main '$remote_addr - $remote_user [$time_local] "$request" '
  125. '$status $body_bytes_sent "$http_referer" '
  126. '"$http_user_agent" "$http_x_forwarded_for"';
  127. access_log /var/log/nginx/access.log main;
  128. sendfile on;
  129. tcp_nopush on;
  130. tcp_nodelay on;
  131. keepalive_timeout 65;
  132. types_hash_max_size 2048;
  133. include /etc/nginx/mime.types;
  134. default_type application/octet-stream;
  135. include /etc/nginx/conf.d/*.conf;
  136. server {
  137. listen 80;
  138. server_name localhost;
  139. include /etc/nginx/default.d/*.conf;
  140. location / {
  141. root html;
  142. index index.html index.htm;
  143. }
  144. error_page 404 /404.html;
  145. location = /40x.html {
  146. }
  147. error_page 500 502 503 504 /50x.html;
  148. location = /50x.html {
  149. }
  150. }
  151. }
  152. [root@kvm conf.d]# pwd
  153. /etc/nginx/conf.d
  154. [root@kvm conf.d]# vi webvirtmgr.conf
  155. [root@kvm conf.d]# cat webvirtmgr.conf
  156. server {
  157. listen 80 default_server;
  158. server_name $hostname;
  159. #access_log /var/log/nginx/webvirtmgr_access_log;
  160. location /static/ {
  161. root /var/www/webvirtmgr/webvirtmgr;
  162. expires max;
  163. }
  164. location / {
  165. proxy_pass http://127.0.0.1:8000;
  166. proxy_set_header X-Real-IP $remote_addr;
  167. proxy_set_header X-Forwarded-for $proxy_add_x_forwarded_for;
  168. proxy_set_header Host $host:$server_port;
  169. proxy_set_header X-Forwarded-Proto $remote_addr;
  170. proxy_connect_timeout 600;
  171. proxy_read_timeout 600;
  172. proxy_send_timeout 600;
  173. client_max_body_size 1024M;
  174. }
  175. }
  176. //確保bind綁定的是本機(jī)的8000端口
  177. [root@kvm ~]# vim /var/www/webvirtmgr/conf/gunicorn.conf.py
  178. bind = '0.0.0.0:8000' //修改此行
  179. backlog = 2048
  180. //啟動nginx
  181. [root@kvm ~]# systemctl enable --now nginx
  182. Created symlink from /etc/systemd/system/multi-user.target.wants/nginx.service to /usr/lib/systemd/system/nginx.service.
  183. [root@kvm ~]# ss -anlt
  184. State Recv-Q Send-Q Local Address:Port Peer Address:Port
  185. LISTEN 0 128 127.0.0.1:6080 *:*
  186. LISTEN 0 128 127.0.0.1:8000 *:*
  187. LISTEN 0 128 *:111 *:*
  188. LISTEN 0 128 *:80 *:*
  189. LISTEN 0 5 192.168.122.1:53 *:*
  190. LISTEN 0 128 *:22 *:*
  191. LISTEN 0 100 127.0.0.1:25 *:*
  192. LISTEN 0 128 [::1]:6080 [::]:*
  193. LISTEN 0 128 [::1]:8000 [::]:*
  194. LISTEN 0 128 [::]:111 [::]:*
  195. LISTEN 0 128 [::]:22 [::]:*
  196. LISTEN 0 100 [::1]:25 [::]:*
  197. //設(shè)置supervisor
  198. [root@kvm ~]# vim /etc/supervisord.conf
  199. #在最后添加下面的內(nèi)容
  200. [program:webvirtmgr]
  201. command=/usr/bin/python2 /var/www/webvirtmgr/manage.py run_gunicorn -c /var/www/webvirtmgr/conf/gunicorn.conf.py
  202. directory=/var/www/webvirtmgr
  203. autostart=true
  204. autorestart=true
  205. logfile=/var/log/supervisor/webvirtmgr.log
  206. log_stderr=true
  207. user=nginx
  208. [program:webvirtmgr-console]
  209. command=/usr/bin/python2 /var/www/webvirtmgr/console/webvirtmgr-console
  210. directory=/var/www/webvirtmgr
  211. autostart=true
  212. autorestart=true
  213. stdout_logfile=/var/log/supervisor/webvirtmgr-console.log
  214. redirect_stderr=true
  215. user=nginx
  216. //啟動supervisor
  217. [root@kvm ~]# systemctl enable --now supervisord
  218. Created symlink from /etc/systemd/system/multi-user.target.wants/supervisord.service to /usr/lib/systemd/system/supervisord.service.
  219. [root@kvm ~]# systemctl status supervisord
  220. ● supervisord.service - Process Monitoring and Control Daemon
  221. Loaded: loaded (/usr/lib/systemd/system/supervisord.service; enabled; vendor preset: disabled)
  222. Active: active (running) since 三 2021-10-20 23:53:33 CST; 12s ago
  223. Process: 46734 ExecStart=/usr/bin/supervisord -c /etc/supervisord.conf (code=exited, status=0/SUCCESS)
  224. Main PID: 46737 (supervisord)
  225. //配置nginx用戶
  226. [root@kvm ~]# su - nginx -s /bin/bash
  227. -bash-4.2$ ssh-keygen -t rsa
  228. Generating public/private rsa key pair.
  229. Enter file in which to save the key (/var/lib/nginx/.ssh/id_rsa):
  230. Created directory '/var/lib/nginx/.ssh'.
  231. Enter passphrase (empty for no passphrase):
  232. Enter same passphrase again:
  233. Your identification has been saved in /var/lib/nginx/.ssh/id_rsa.
  234. Your public key has been saved in /var/lib/nginx/.ssh/id_rsa.pub.
  235. The key fingerprint is:
  236. SHA256:S46h+CYFvCGW+6z68PXZgbKNLLdPdiPD6LmzPOpYBwI nginx@kvm
  237. The key's randomart image is:
  238. +---[RSA 2048]----+
  239. | |
  240. | |
  241. |E.. |
  242. |oo+ |
  243. |o.o+ . S |
  244. | o.o.+ * . |
  245. |. =.* O * |
  246. | =oX=X * o |
  247. |++**%B= . |
  248. +----[SHA256]-----+
  249. -bash-4.2$ touch ~/.ssh/config && echo -e "StrictHostKeyChecking=no\nUserKnownHostsFile=/dev/null" >> ~/.ssh/config
  250. -bash-4.2$ chmod 0600 ~/.ssh/config
  251. -bash-4.2$ ssh-copy-id root@192.168.237.131
  252. /bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/var/lib/nginx/.ssh/id_rsa.pub"
  253. /bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
  254. /bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
  255. Warning: Permanently added '192.168.237.131' (ECDSA) to the list of known hosts.
  256. root@192.168.237.131's password:
  257. Number of key(s) added: 1
  258. Now try logging into the machine, with: "ssh 'root@192.168.237.131'"
  259. and check to make sure that only the key(s) you wanted were added.
  260. -bash-4.2$ exit
  261. 登出
  262. [root@kvm ~]# vim /etc/polkit-1/localauthority/50-local.d/50-libvirt-remote-access.pkla
  263. [Remote libvirt SSH access]
  264. Identity=unix-user:root
  265. Action=org.libvirt.unix.manage
  266. ResultAny=yes
  267. ResultInactive=yes
  268. ResultActive=yes
  269. [root@kvm ~]# chown -R root.root /etc/polkit-1/localauthority/50-local.d/50-libvirt-remote-access.pkla
  270. [root@kvm ~]# systemctl restart nginx
  271. [root@kvm ~]# systemctl restart libvirtd

1.3 kvm web界面管理

通過ip地址在瀏覽器上訪問kvm

KVM虛擬化安裝部署及管理教程

1.3.1 kvm連接管理

創(chuàng)建SSH連接:

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

1.3.2 kvm存儲管理

創(chuàng)建存儲:

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

進(jìn)入存儲:

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

通過遠(yuǎn)程連接軟件上傳ISO鏡像文件至存儲目錄/var/lib/libvirt/images/

  1. [root@kvm ~]# ls /var/lib/libvirt/images/
  2. CentOS-8.4.2105-x86_64-dvd1.iso

在 web 界面查看ISO鏡像是否存在

KVM虛擬化安裝部署及管理教程

創(chuàng)建系統(tǒng)安裝鏡像

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

1.3.3 kvm網(wǎng)絡(luò)管理

添加橋接網(wǎng)絡(luò)

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

1.3.4 實(shí)例管理

實(shí)例(虛擬機(jī))創(chuàng)建

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

KVM虛擬化安裝部署及管理教程

虛擬機(jī)插入光盤

KVM虛擬化安裝部署及管理教程

設(shè)置在 web 上訪問虛擬機(jī)的密碼

KVM虛擬化安裝部署及管理教程

啟動虛擬機(jī)

KVM虛擬化安裝部署及管理教程

打開控制臺

KVM虛擬化安裝部署及管理教程

安裝虛擬機(jī)

KVM虛擬化安裝部署及管理教程

安裝完成

KVM虛擬化安裝部署及管理教程

故障

web界面無法訪問,命令行報錯(accept: Too many open files)

  1. nginx進(jìn)行配置
  2. [root@kvm ~]# vim /etc/nginx/nginx.conf
  3. user nginx;
  4. worker_processes auto;
  5. error_log /var/log/nginx/error.log;
  6. pid /run/nginx.pid;
  7. worker_rlimit_nofile 655350; //添加此行
  8. [root@kvm ~]# systemctl restart nginx.service
  9.  
  10. 對系統(tǒng)參數(shù)進(jìn)行設(shè)置
  11. [root@kvm ~]# vim /etc/security/limits.conf
  12. # End of file //添加下面兩行
  13. * soft nofile 655350
  14. * hard nofile 655350
  15.  
  16. 重啟虛擬機(jī),就能成功訪問
  17. [root@kvm ~]# reboot

以上就是KVM虛擬化安裝部署及管理教程的詳細(xì)內(nèi)容,更多關(guān)于KVM虛擬化安裝部署及管理的資料請關(guān)注服務(wù)器之家其它相關(guān)文章!

原文鏈接:https://blog.csdn.net/tianwailaiwu_/article/details/120872354

延伸 · 閱讀

精彩推薦
Weibo Article 1 Weibo Article 2 Weibo Article 3 Weibo Article 4 Weibo Article 5 Weibo Article 6 Weibo Article 7 Weibo Article 8 Weibo Article 9 Weibo Article 10 Weibo Article 11 Weibo Article 12 Weibo Article 13 Weibo Article 14 Weibo Article 15 Weibo Article 16 Weibo Article 17 Weibo Article 18 Weibo Article 19 Weibo Article 20 Weibo Article 21 Weibo Article 22 Weibo Article 23 Weibo Article 24 Weibo Article 25 Weibo Article 26 Weibo Article 27 Weibo Article 28 Weibo Article 29 Weibo Article 30 Weibo Article 31 Weibo Article 32 Weibo Article 33 Weibo Article 34 Weibo Article 35 Weibo Article 36 Weibo Article 37 Weibo Article 38 Weibo Article 39 Weibo Article 40
主站蜘蛛池模板: 国内精品久久久久久中文字幕 | 久久99久 | 91视频大全| 日韩精品一| 日韩三级在线免费观看 | 一区欧美 | 一区二区亚洲 | 日韩av高清在线 | 天天色天天色 | 亚洲国产精品成人 | av中文天堂| 国产精品一二三区 | 国产精品免费久久久久久久久久中文 | 成人午夜视频免费 | 日韩欧美精品在线 | 国精品一区二区三区 | 精品国产乱码久久久久久1区2区 | 成年女人免费v片 | 国产成人精品一区二区 | 人人操天天射 | 精品电影 | 一区二区在线免费观看 | 一区二区在线视频 | www一区二区 | 欧美aaa级| 免费毛片网站 | 国产大学生援交视频在线观看 | 欧美影视一区二区三区 | 黄色毛片在线观看 | 久久久久久久久久一区二区 | 国产欧美久久一区二区三区 | 久久久中文 | 亚洲区视频 | 日韩成人av在线 | 日韩成人片 | 国产黄色在线播放 | 日韩一区二区在线观看 | 国产精品2区| 极品一区 | 国产 一区| 91久色|