婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av

主頁 > 知識庫 > Linux中安裝sosreport和supportconfig來收集系統信息

Linux中安裝sosreport和supportconfig來收集系統信息

熱門標簽:電銷語音機器人哪個好 文山外呼營銷系統 地圖上標注點位的圖標 中山防封卡電銷卡辦理 拉薩銷售外呼系統軟件 常熟外呼系統 江蘇小型外呼系統軟件 電話機器人服務器部署 百度地圖標注未成功

sosreport
sosreport是一個類型于supportconfig 的工具,sosreport是python編寫的一個工具,適用于centos(和redhat一樣,包名為sos)、ubuntu(其下包名為sosreport)等大多數版本的linux 。sosreport在github上的托管頁面為:https://github.com/sosreport/sos ,而且默認在很多系統的源里都已經集成有。如果使用的是正版redhat,在出現系統問題,尋求官方支持時,官方一般也會通過sosreport將收集的信息進行分析查看。需要注意的是在一些老的redhat發行版中叫sysreport ------ 如redhat4.5之前的版本中。

一、sosreport的安裝

在默認使用linux發行版的源進行安裝時,由于在不同的系統上包名稱也會有差異,所以使用的命令也不同,如redhat和ubuntu平臺的安裝如下:
 

復制代碼
代碼如下:

// redhat/centos下的安裝
# yum -y insatll sos
// ubuntu下的安裝
# sudo apt-get install sosreport

二、sosreport用法

 

可以使用sosreport --help或man sosreport 獲取使用幫助手冊,如下:
 

復制代碼
代碼如下:

[root@361way ~]# sosreport --help
Usage: sosreport [options]
Options:
-h, --help show this help message and exit
-l, --list-plugins list plugins and available plugin options
-n NOPLUGINS, --skip-plugins=NOPLUGINS
disable these plugins
-e ENABLEPLUGINS, --enable-plugins=ENABLEPLUGINS
enable these plugins
-o ONLYPLUGINS, --only-plugins=ONLYPLUGINS
enable these plugins only
-k PLUGOPTS, --plugin-option=PLUGOPTS
plugin options in plugname.option=value format (see
-l)
-a, --alloptions enable all options for loaded plugins
--batch batch mode - do not prompt interactively
--build keep sos tree available and dont package results
-v, --verbose increase verbosity
--quiet only print fatal errors
--debug enable interactive debugging using the python debugger
--ticket-number=TICKET_NUMBER
specify ticket number
--name=CUSTOMER_NAME specify report name
--config-file=CONFIG_FILE
specify alternate configuration file
--tmp-dir=TMP_DIR specify alternate temporary directory
--report Enable HTML/XML reporting
--profile turn on profiling
-z COMPRESSION_TYPE, --compression-type=COMPRESSION_TYPE
compression technology to use [auto, zip, gzip, bzip2,
xz] (default=auto)
Some examples:
enable cluster plugin only and collect dlm lockdumps:
# sosreport -o cluster -k cluster.lockdump
disable memory and samba plugins, turn off rpm -Va collection:
# sosreport -n memory,samba -k rpm.rpmva=off

上面也列出了具體操作的示例。其中-l 參數會列出當前enable和disable的所有服務插件及當前available的所有插件。

復制代碼
代碼如下:

[root@361way log]# sosreport -a --report
sosreport (version 3.0)
This command will collect diagnostic and configuration information from
this CentOS Linux system and installed applications.
An archive containing the collected information will be generated in
/var/tmp and may be provided to a CentOS support representative.
Any information provided to CentOS will be treated in accordance with
the published support policies at:
https://www.centos.org/
The generated archive may contain data considered sensitive and its
content should be reviewed by the originating organization before being
passed to any third party.
No changes will be made to system configuration.
Press ENTER to continue, or CTRL-C to quit.
Please enter your first initial and last name [361way.com]:
Please enter the case number that you are generating this report for:
Running plugins. Please wait ...
Running 68/68: yum...
Creating compressed archive...
Your sosreport has been generated and saved in:
/var/tmp/sosreport-361way.com-20140912204339.tar.xz
The checksum is: eaf5b2cbb1e9be68d41be5e5a60a61b6
Please send this file to your support representative.

如上所示,我使用-A 啟用所有的模塊,--report是開啟所有的結果以html /xml 的格式一個總的報告。生成的包需要通過下面的命令進行解包。

復制代碼
代碼如下:

# xz -d ***.tar.xz
# tar -xvf ***.tar

或直接使用下面的命令一步完成解壓

復制代碼
代碼如下:

tar xvJf ***.tar.xz

在解包后的sos_reports 目錄會有report的結果sos.html文件生成,同時會有sos.txt文件生成,該文件內列出了具體執行的命令及copy 文件的一些信息。

 

由于頁面較大,這里只截出了最上面的部分,列出了所有的收集模塊,下面alerts 給出了報警模塊的信息。再往下就是具體到每一個模塊的信息。

三、sosreport配置文件

sosreport的配置文件是/etc/sos.conf ,默認內容如下:
 

復制代碼
代碼如下:

[root@361way ~]# cat /etc/sos.conf
[general]
#ftp_upload_url = ftp://example.com/incoming
#gpg_keyring = /usr/share/sos/rhsupport.pub
#gpg_recipient = support@redhat.com
smtp_server = None
[plugins] //此處可以設置默認enable和disable的模塊
#disable = rpm, selinux, dovecot
[tunables] //可調參數
#rpm.rpmva = off
#general.syslogsize = 15

從配置文件上可以看出,sosreport同樣將收集的結果上傳到server 上,可以通過man sos.conf 查看配置文件的幫助信息,不過man給出的并沒有太多信息,想在了解更多的信息可以查看 sosreport在github上的wiki頁 。

 

四、sosreport總結

相于supportconfig,由于sosreport是由python語言進行編寫的,所以其在功能擴展上更有優勢,但由于在不同的發行版本上的python版本不同,在進行功能擴展時,對不同版本間的異常處理相對麻煩。而supportconfig由于是shell 語言編寫的一個工具,對版本的依賴相對少些 ,但對一些工具的依賴相對多些 ,如在獲取進程相關的信息時,shell 需要將ps 工具或處理proc的結果,而sosreport則可以直接import psutil 模塊,兩者之間的區別,歸根到底就是shell 和python的區別。

supportconfig
一、supportconfig的安裝

可以通過yast進行安裝,也可以通過zypper命令進行安裝,安裝命令如下:

直接使用源進行安裝
 

復制代碼
代碼如下:
#zypper install supportutils

也可以將rpm包下載下來使用yast進行安裝或者在yast的管理界面里查找安裝

復制代碼
代碼如下:
#yast install supportutils-xxx.rpm

注:根據系統的版本不同,包名也可能是supportconfig 。

 

安裝完成后可以使用rpm -ql supportutils 查看包中具體包含的文件信息,如下:
 

復制代碼
代碼如下:

# rpm -ql supportutils
/etc/schealth.conf
/etc/supportconfig.conf
/sbin/chkbin
/sbin/supportconfig
/usr/bin/schealth
/usr/share/man/man5/supportconfig.conf.5.gz
/usr/share/man/man8/chkbin.8.gz
/usr/share/man/man8/supportconfig.8.gz

注:上面的結果是在 suse11 sp1企業版上的測試的結果,在opensuse 13上目錄結構會略有不同,其上使用的是新版本的supportconfig。

 

二、supportconfig用法

以下是supportconfig的幫助輸出
 

復制代碼
代碼如下:

# supportconfig -h
=============================================================================
Support Utilities - Supportconfig
Script Version: 2.25-197
Script Date: 2010 04 02
=============================================================================
Usage: supportconfig [OPTION [OPTION ...]]
-h This screen
-A Activates all supportconfig functions with additional logging and full
rpm verification.
-B string> Custom tar ball file name element
-C Creates a new default /etc/supportconfig.conf
-D Use defaults; ignore /etc/supportconfig.conf
-E string> Contact email address
-F Display available supportconfig feature keywords (case-sensitive) used
with -i and -x
-G gpg_uid> The GPG recipient's user ID used to encrypt the supportconfig tarball
-H number> Limit number of included HA Policy engine files
-I number> Default log file line count
-L Create a full file listing from '/'
-M string> Contact terminal ID
-N string> Contact name
-O string> Contact company name
-P string> Contact phone number
-Q Run in silent mode
-R path> Log output directory
-S number> Limit number of included SAR files
-T seconds> Binary execution timeout
-U URI string> Sets upload target URL and initiates an upload, supported
services include: ftp, scp, http, https
-M string> Contact store ID
-X number> Max system logs line count
-a Upload the tar ball to the specified alternate target VAR_OPTION_UPLOAD_ALT
-b Screen buffer mode
-d Exclude detailed disk info and scans
-e Search root file system for eDirectory instances; -L implied. Be patient.
-f From directory. Don't collect report files, just use files in that
directory.
-g Use gzip instead of the default bzip2 compression.
-i keyword list>
Include keywords. A comma separated list of feature keywords that specify
which features to include. Use -F to see a list of valid keywords.
-l Gathers additional rotated logs
-m Only gather a minimum amount of info: basic env, basic health, hardware,
rpm, messages, y2logs
-o Toggle listed features on or off
-p Disable all plugins
-q Add a uuid to the tar ball filename to ensure uniqueness
-r srnum>
Includes the Novell 11 digit service request number when uploading
the tar ball to Novell
-s Include full SLP service lists
-t Target directory. Just save log files here, do not create tarball.
-u Upload the tar ball to the specified VAR_OPTION_UPLOAD_TARGET.
-v Performs an rpm -V for each installed rpm NOTE: This takes a long time
to complete
-x keyword list>
Exclude keywords. A comma separated list of feature keywords that specify
which features to exclude. Use -F to see a list of valid keywords.
-y Only gather the minimum y2log files.
Use Ctrl- to try and skip a function that is hanging.
-----------------------------------------------------------------------------
NOTE:
This tool will create a tar ball in the /var/log directory. Please attach
the log file tar ball to your open Service. Request at the following URL:
a href="https://secure-support.novell.com/eService_enu">https://secure-support.novell.com/eService_enu/a>
If you cannot attach the tar ball to the SR, then email it to the engineer.
Please submit bug fixes or comments via:
a href="http://en.opensuse.org/Supportutils#Reporting_Bugs">http://en.opensuse.org/Supportutils#Reporting_Bugs/a>
=============================================================================
Support Utilities - Supportconfig
Script Version: 2.25-197
Script Date: 2010 04 02
=============================================================================

默認supportconfig或supportconfig -A執行后會將收集后的結果打包為一個nts_主機名_日期.tbz 文件,同時會生成一個以該文件名加.md5后綴的文件。

 

三、supportconfig常用示例

1、supportconfig -A 收集所有日志
 

復制代碼
代碼如下:

# supportconfig
=============================================================================
Support Utilities - Supportconfig
Script Version: 2.25-290
Script Date: 2011 07 14
=============================================================================
Gathering system information
Data Directory: /var/log/nts_361way.com_140825_1504
Basic Server Health Check... Done
RPM Database... Done
Basic Environment... Done
Basic Health Report... Done
System Modules... Done
Memory Details... Done
Disk I/O... Done
YaST Files... Done
Auditing... Done
Crash Info... Done
NTP... Done
PROC... Done
Boot Files... Done
SLERT... Skipped
Updates... Done
SMT... Skipped
Novell eDirectory... Please Wait... Skipped
Novell LUM... Skipped
Novell NCP... Skipped
Novell NSS... Skipped
Novell DFS... Skipped
Novell SMS... Skipped
Novell NCS... Skipped
Novell AFP... Skipped
Novell CIFS... Skipped
Novell iManager... Skipped
HA Cluster... Skipped
OCFS2... Skipped
DRBD... Skipped
PAM... Done
LDAP... Done
CIMOM... Done
Open Files... Done
Environment... Done
ETC... Done
SYSCONFIG... Done
SYSFS... Done
System Daemons... Done
CRON... Done
AT... Done
UDEV... Done
LVM... Please Wait... Base Detail Done
EVMS... Skipped
Software Raid... Done
Multipathing... Done
Networking... Done
Web... Done
InfiniBand... Done
DNS... Done
DHCP... Done
SLP... Done
SSH... Done
iSCSI... Done
Samba... Done
NFS... Done
AUTOFS... Done
SAR Files... Done
AppArmor... Done
Xen... Done
KVM... Done
X... Done
Printing... Done
SMART Disks... Excluded
Hardware... Please Wait... Done
File System List... Skipped
Supportability Analysis... Please Wait... Done
System Logs... Done
Creating Tar Ball
==[ DONE ]===================================================================
Log file tar ball: /var/log/nts_361way.com_140825_1504.tbz
Log file size: 4.0M
Log file md5sum: 484b111cda54ca04419facd82a1da7d7
Please attach the log file tar ball to your open Service Request at the
following URL:
a href="https://secure-support.novell.com/eService_enu">https://secure-support.novell.com/eService_enu/a>
You can also upload the tar ball to a href="ftp://ftp.novell.com/incoming">ftp.novell.com/incoming/a>, or just use
supportconfig -ur srnum>, to upload the tar ball automatically.
If you cannot attach the tar ball to the SR, then email it to the engineer.
=============================================================================

其他常用用法:

復制代碼
代碼如下:

//以最小選項搜集所需的信息
# supportconfig -m
//在輸出中包含附加的聯系人信息
# supportconfig -E a href="mailto:tux@example.org">tux@example.org/a> -N "Tux Penguin" -O "Penguin Inc." ...
//要查看完整的功能列表
# supportconfig -F
//僅收集某個模塊的用法,如LVM相的信息
# supportconfig -i LVM
//-x 的功能與-i剛好相反,是排除某個模塊不收集
# supportconfig -x LVM
//使用-U url 可以將收集的結果上傳到服務器上,直接的服務有ftp, scp, http, https,如:
# supportconfig -A -U a href="http://www.361way.com/files/">http://www.361way.com/files//a>
具體可以參看官方的 常用的supportconfig選項 部分 。

supportconfig收集的系統健康報告:

復制代碼
代碼如下:

# supportconfig -A
# cd /var/log
# tar jxvf nts_361way.com_140825_1504.tbz
# more basic-health-report.txt
#==[ Command ]======================================#
# /usr/bin/schealth -q
######################################################################
Supportconfig Health Check Report Tool v1.00-5
Date Checked: 09/12/14 04:40:37
######################################################################
Health Check Files [ Green ]
Processes Waiting for Run Queue [ Green ]
Kernel Taint Status [ Red ]
Kernel Tainted: 64 > 0
CPU Utilization [ Green ]
Interrupts Per Second [ Green ]
Context Switches Per Second [ Green ]
Free Memory and Disk Swapping [ Green ]
Used Disk Space [ Green ]
Uninterruptible Processes [ Green ]
Zombie Processes [ Green ]
######################################################################
Status: Red Flag
Checked: /var/log/nts_361way.com_140825_1504/basic-health-check.txt
Report: /var/log/nts_361way.com_140825_1504/basic-health-report.txt
######################################################################

上面的報告中,我們發現kernel Tainted 狀態為red ,該處是通過cat  /proc/sys/kernel/tainted 進行判斷的,如果值不為0,則是內核受到污染 ,顯的值不同,具體可以參看/usr/src/linux/Documentation/sysctl/kernel 文件(具體的值不一樣,代表的意義也不一樣)。64報紅是由于加載了非系統官方或非開源的模塊所致( Unsupported modules loaded)。

 

四、supportconfig配置文件

supportconfig的默認配置文件是 /etc/supportconfig.conf ,其默認內容如下:
 

復制代碼
代碼如下:

# cat /etc/supportconfig.conf
####################################
# Default Options
####################################
OPTION_AFP=1
OPTION_APPARMOR=1
OPTION_AUDIT=1
OPTION_AUTOFS=1
OPTION_BOOT=1
OPTION_CHKCONFIG=1
OPTION_CIFS=1
OPTION_CIMOM=1
OPTION_CRASH=1
OPTION_CRON=1
OPTION_DFS=1
OPTION_DHCP=1
OPTION_DISK=1
OPTION_DNS=1
OPTION_EDIR=1
OPTION_ENV=1
OPTION_ETC=1
OPTION_EVMS=1
OPTION_HA=1
OPTION_HCREPORT=1
OPTION_IB=1
OPTION_ISCSI=1
OPTION_LDAP=1
OPTION_LUM=1
OPTION_LVM=1
OPTION_MEM=1
OPTION_MOD=1
OPTION_MPIO=1
OPTION_NCP=1
OPTION_NCS=1
OPTION_NET=1
OPTION_NFS=1
OPTION_NSS=1
OPTION_NTP=1
OPTION_OCFS2=1
OPTION_OFILES=1
OPTION_PAM=1
OPTION_PRINT=1
OPTION_PROC=1
OPTION_SAM=1
OPTION_SAR=1
OPTION_SLERT=1
OPTION_SLP=1
OPTION_SMART=0
OPTION_SMB=1
OPTION_SMS=1
OPTION_SMT=1
OPTION_SRAID=1
OPTION_SSH=1
OPTION_SYSCONFIG=1
OPTION_SYSFS=1
OPTION_UDEV=1
OPTION_UP=1
OPTION_UPD=1
OPTION_WEB=1
OPTION_X=1
OPTION_XEN=1
ADD_OPTION_EDIR=0
ADD_OPTION_FSLIST=0
ADD_OPTION_LOGS=0
ADD_OPTION_MINDISK=0
ADD_OPTION_MINYAST=0
ADD_OPTION_RPMV=0
ADD_OPTION_SLP=0
VAR_OPTION_BIN_TIMEOUT_SEC=300
VAR_OPTION_CONTACT_COMPANY=""
VAR_OPTION_CONTACT_EMAIL=""
VAR_OPTION_CONTACT_NAME=""
VAR_OPTION_CONTACT_PHONE=""
VAR_OPTION_CONTACT_STOREID=""
VAR_OPTION_CONTACT_TERMINALID=""
VAR_OPTION_CUSTOM_ARCH=""
VAR_OPTION_GPG_UID=""
VAR_OPTION_LINE_COUNT=500
VAR_OPTION_LOG_DIRS="/var/log /tmp"
VAR_OPTION_MSG_MAXSIZE=500000
VAR_OPTION_PENGINE_FILES_LIMIT=250
VAR_OPTION_SAR_FILES_LIMIT=30
VAR_OPTION_SBM=0
VAR_OPTION_SILENT=0
VAR_OPTION_UNIQUE_FILE=0
VAR_OPTION_UPLOAD_ALT='https://secure-www.novell.com/upload?appname=supportconfigfile={tarball}'
VAR_OPTION_UPLOAD_TARGET='ftp://ftp.novell.com/incoming'

配置文件中列出了默認收集的模塊信息,公司信息、郵件、電話及上傳的服務器目錄等。

 

五、supportconfig總結

supportconfig是使用shell 編寫的一個功能十分強大的工具,具體可以通過vim /sbin/supportconfig 查看 。同時,由于linux命令上的通用性,我們甚至可以很簡單的進行修改后將其移植到其他linux 發行版上。不過顯然這是沒必要的,因為還有一個比較通的用的開源工具sosreport和其作用差不多,而其適用性更強,后面會單獨列一篇做一個總結。

標簽:黔南 河南 海北 天門 景德鎮 威海 欽州 鶴壁

巨人網絡通訊聲明:本文標題《Linux中安裝sosreport和supportconfig來收集系統信息》,本文關鍵詞  Linux,中,安裝,sosreport,和,supportconfig,來,收集,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Linux中安裝sosreport和supportconfig來收集系統信息》相關的同類信息!
  • 本頁收集關于Linux中安裝sosreport和supportconfig來收集系統信息的相關信息資訊供網民參考!
  • 推薦文章
    婷婷综合国产,91蜜桃婷婷狠狠久久综合9色 ,九九九九九精品,国产综合av
    日韩av二区在线播放| 亚洲国产成人tv| 亚洲视频一二三区| 国产成人精品午夜视频免费| 欧美一区二区在线免费播放| 亚洲超碰97人人做人人爱| 欧美性大战xxxxx久久久| 亚洲乱码国产乱码精品精小说 | 国产做a爰片久久毛片| 欧美高清视频一二三区| 亚洲不卡在线观看| 日韩欧美国产精品一区| 国产精品一区二区在线看| 欧美国产丝袜视频| 91福利在线免费观看| 午夜精品成人在线视频| 日韩免费看的电影| 成人美女视频在线看| 综合婷婷亚洲小说| 日韩亚洲欧美一区二区三区| 无码av免费一区二区三区试看 | 视频一区二区中文字幕| 日韩色在线观看| 国产91在线看| 亚洲成a人片综合在线| 精品对白一区国产伦| 91亚洲男人天堂| 麻豆国产一区二区| 国产精品乱人伦| 欧美一级一区二区| 色综合中文字幕国产 | 国产一区二区三区四区五区入口| 久久久精品黄色| 欧美午夜一区二区三区免费大片| 韩国av一区二区三区在线观看| 亚洲欧美激情一区二区| 欧美大片在线观看一区二区| 97aⅴ精品视频一二三区| 日本人妖一区二区| 亚洲精选视频在线| 国产肉丝袜一区二区| 欧美一级艳片视频免费观看| 一本大道av伊人久久综合| 黑人精品欧美一区二区蜜桃| 亚洲第一狼人社区| 亚洲人成影院在线观看| 国产视频在线观看一区二区三区| 777午夜精品免费视频| 色琪琪一区二区三区亚洲区| 国产白丝网站精品污在线入口| 午夜国产精品一区| 久久天堂av综合合色蜜桃网| 日韩欧美在线网站| 欧美精选在线播放| 欧美日韩国产首页| 欧美怡红院视频| 色一情一伦一子一伦一区| 成人av在线电影| 福利电影一区二区三区| 国产一区二区看久久| 日本不卡高清视频| 青青草国产精品97视觉盛宴 | 成人av午夜影院| 国内精品写真在线观看| 免费美女久久99| 亚洲成人你懂的| 午夜精品久久久久| 日韩高清一区二区| 日韩综合在线视频| 蜜臀a∨国产成人精品| 麻豆成人av在线| 久久99精品国产.久久久久| 秋霞成人午夜伦在线观看| 五月婷婷综合在线| 亚洲综合色婷婷| 亚洲高清免费在线| 亚洲一区二区三区视频在线播放| 在线播放国产精品二区一二区四区| 一区二区三区免费看视频| 成人欧美一区二区三区1314| 欧美激情综合在线| 欧美网站大全在线观看| 欧美性xxxxx极品少妇| 蜜桃免费网站一区二区三区| 日韩精品电影在线| 欧美性受xxxx黑人xyx性爽| 一区二区高清在线| 免费视频一区二区| 国产精品888| 国产精品一区二区视频| 亚洲成a人v欧美综合天堂下载| 亚洲欧美日韩中文播放 | 国产九色sp调教91| 久久99久久99小草精品免视看| 免费观看成人av| 午夜精品在线看| 久久国产精品露脸对白| 国产盗摄精品一区二区三区在线| 国内成人精品2018免费看| 国产乱码精品一区二区三区av| 成人免费看视频| 成人精品国产免费网站| 99re热这里只有精品免费视频| 国产乱码精品一区二区三区五月婷| 国产精品第13页| 国产91丝袜在线观看| av欧美精品.com| 26uuu国产日韩综合| 国产亚洲人成网站| 婷婷国产v国产偷v亚洲高清| 亚洲欧洲成人自拍| 91精品福利视频| 欧美三片在线视频观看| 欧美片网站yy| 国产高清无密码一区二区三区| 91香蕉视频污在线| 欧美三区在线观看| 中文字幕综合网| 成人激情电影免费在线观看| 国产精品女人毛片| 亚洲图片欧美综合| 成人免费三级在线| 一区二区成人在线| 一区二区三区在线视频免费| 久久精品噜噜噜成人av农村| 日本一区二区免费在线观看视频 | 国产一区二区不卡| 日韩精品一区二区三区视频 | 在线成人小视频| 亚洲女爱视频在线| 一级精品视频在线观看宜春院 | 香蕉久久一区二区不卡无毒影院| 蜜臀av性久久久久av蜜臀妖精| 欧美性色黄大片手机版| 亚洲欧美视频一区| 91免费看视频| 亚洲嫩草精品久久| 色综合久久中文综合久久97| 一区二区中文字幕在线| 国产永久精品大片wwwapp| 欧美三级韩国三级日本一级| 亚洲美女免费视频| 99re成人精品视频| 亚洲九九爱视频| 色综合一个色综合| 国产欧美精品一区| 国产69精品久久久久777| 91麻豆精品91久久久久久清纯| 亚洲一区二区四区蜜桃| 一本大道久久a久久精品综合| 亚洲精品乱码久久久久久久久| 国产麻豆成人传媒免费观看| 欧美成人性战久久| 国产激情精品久久久第一区二区| 久久亚洲免费视频| av激情亚洲男人天堂| 中文字幕亚洲欧美在线不卡| a在线播放不卡| 亚洲电影一级片| 26uuu另类欧美亚洲曰本| 国产精品一区二区无线| 亚洲美女视频一区| 欧美一区三区四区| 韩国女主播一区二区三区| 国产精品久久久久一区| 欧美午夜精品久久久久久超碰| 日精品一区二区三区| 欧美高清在线视频| 欧美日韩午夜在线| 国产成人免费9x9x人网站视频| 亚洲欧美区自拍先锋| 精品国产亚洲在线| 92国产精品观看| 久久精品国产精品亚洲综合| 欧美激情一区在线| 欧美日韩夫妻久久| 国产suv一区二区三区88区| 亚洲bt欧美bt精品| 国产精品久久久久久久久果冻传媒 | 精品免费视频一区二区| 国产美女娇喘av呻吟久久| 亚洲女人的天堂| 国产亚洲美州欧州综合国| 欧美专区在线观看一区| 国产伦精品一区二区三区免费| 亚洲黄色av一区| 久久久美女艺术照精彩视频福利播放| 99国产精品久久久久久久久久 | 国产成人精品午夜视频免费| 亚洲综合免费观看高清完整版| 精品福利一二区| 91福利资源站| 97se亚洲国产综合在线| 精品一区二区三区在线观看国产 | 播五月开心婷婷综合| 日韩成人av影视| 亚洲愉拍自拍另类高清精品| 久久网站最新地址| 精品国产不卡一区二区三区| 4438亚洲最大|