久久精品国产精品国产精品污,男人扒开添女人下部免费视频,一级国产69式性姿势免费视频,夜鲁夜鲁很鲁在线视频 视频,欧美丰满少妇一区二区三区,国产偷国产偷亚洲高清人乐享,中文 在线 日韩 亚洲 欧美,熟妇人妻无乱码中文字幕真矢织江,一区二区三区人妻制服国产

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 运维知识 > windows >内容正文

windows

dnsmasq国内外域名分流系统搭建

發布時間:2024/3/26 windows 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 dnsmasq国内外域名分流系统搭建 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

一、域名分流系統原理? ??

? ? dnscrypt-proxy是一個搭建DNS服務器的程序,但它也并非僅僅是一個程序這么簡單,它還是一個為了防止域名污染公益項目。由OpenDNS主導(思科公司的子公司),它在全球部署了許多可靠的DNS服務器,彼此間通過加密通道傳輸信息。dnsmasq支持dns及dns緩存、dhcp、tftp等服務,為了實現國內外域名分流,使用dnscrypt-proxy搭配dnsmasq。我們在訪問國內網站的時候,dnscrypt-proxy服務器在國外,域名解析速度比較慢,因此訪問國內網站的時候可以通過dnsmasq來進行訪問。

? ? 因此所有域名,首先都發送到dnsmasq通道,如果是國內域名,dnsmasq調用上層國內DNS服務器返回國內域名所對應的IP,達到高速解析的效果。如果dnsmasq發現是國外域名,則放棄解析,轉交給dnscrypt,通過加密通道訪問其部署在全球的可靠的DNS服務器,返回沒有污染的、真實的IP。

? ? ?dnsmasq無法識別國內外域名,但是可以通過GFW列入黑名單的國外域名清單gfwlist來分流,gfwlist中的域名走國外路線,其余域名走國內路線

? ? ?本系統在Ubuntu20.04和CentOS8.2系統上都搭建成功過,原文是在CentOS系統上實現的,因此,本文記錄Ubantu系統搭建過程

二、系統搭建

1、安裝dnscrypt-proxy

apt update apt install dnscrypt-porxy

配置dnscrypt-proxy,主要修改dnscrypt-proxy.toml和dnscrypt-proxy.socket

vi /etc/dnscrypt-proxy/dnscrypt-proxy.toml

將listen_addresses中的地址刪除,改為listen_addresses = []

# Empty listen_addresses to use systemd socket activation listen_addresses = [] server_names = ['cloudflare'][query_log]file = '/var/log/dnscrypt-proxy/query.log'[nx_log]file = '/var/log/dnscrypt-proxy/nx.log'[sources][sources.'public-resolvers']url = 'https://download.dnscrypt.info/resolvers-list/v2/public-resolvers.md'cache_file = '/var/cache/dnscrypt-proxy/public-resolvers.md'minisign_key = 'RWQf6LRCGA9i53mlYecO4IzT51TGPpvWucNSCh1CBM0QTaLn73Y7GFO3'refresh_delay = 72prefix = ''

修改dnscrypt-proxy.socket中Socket小節

vi /usr/lib/systemd/system/dnscrypt-proxy.socket

修改成以下內容:

[Unit] Description=dnscrypt-proxy listening socket Documentation=https://github.com/DNSCrypt/dnscrypt-proxy/wiki Before=nss-lookup.target Wants=nss-lookup.target Wants=dnscrypt-proxy-resolvconf.service[Socket] ListenStream= ListenDatagram= ListenStream=127.0.0.1:53 ListenStream=[::1]:53 ListenDatagram=127.0.0.1:53 ListenDatagram=[::1]:53 #ListenStream=127.0.2.1:53 #ListenDatagram=127.0.2.1:53 NoDelay=true DeferAcceptSec=1[Install] WantedBy=sockets.target

保存完后,執行以下命令讓他們開機自啟:

systemctl daemon-reload systemctl start dnscrypt-proxy.socket systemctl enable dnscrypt-proxy.socket systemctl start dnscrypt-proxy.service systemctl enable dnscrypt-proxy.service

2.安裝dnsmasq

apt install dnsmasq

修改dnsmasq.conf.文件

vi /etc/dnsmasq.conf

?修改以下參數:

log-queries?
log-facility=/var/log/dnsmasq.log (記錄查詢請求,并通過log-facility指定記錄日志)
no-hosts (直接查詢上游DNS,忽略hosts文件)
domain=dns.test(設置局域網域名)
listen-address=127.0.0.1,10.10.10.1
listen-address=::1,2600::1(監控本機,以及內網IP地址)
address=/dns.test/10.10.10.1?(將域名與IP綁定)
address=/dns.test/2600::1?(將域名與IP綁定)
expand-hosts (刪掉這行前面的#號,即: 取消注釋讓其生效)
server=2400:3200::1
server=114.114.114.114?(因為dnsmasq對應的是國內域名,因此我們采用阿里ipv6DNS,百度ipv4DNS)

conf-dir=/etc/dnsmasq.d
conf-dir=/etc/dnsmasq.d,.bak
conf-dir=/etc/dnsmasq.d/,*.conf (只要保證conf-dir沒有被注釋,/etc/dnsmasq.d這個路徑包含在設置清單內即可)

# Configuration file for dnsmasq. # # Format is one option per line, legal options are the same # as the long options legal on the command line. See # "/usr/sbin/dnsmasq --help" or "man 8 dnsmasq" for details.# Listen on this specific port instead of the standard DNS port # (53). Setting this to zero completely disables DNS function, # leaving only DHCP and/or TFTP. port=53# The following two options make you a better netizen, since they # tell dnsmasq to filter out queries which the public DNS cannot # answer, and which load the servers (especially the root servers) # unnecessarily. If you have a dial-on-demand link they also stop # these requests from bringing up the link unnecessarily.# Never forward plain names (without a dot or domain part) #domain-needed # Never forward addresses in the non-routed address spaces. #bogus-priv# Uncomment these to enable DNSSEC validation and caching: # (Requires dnsmasq to be built with DNSSEC option.) #conf-file=%%PREFIX%%/share/dnsmasq/trust-anchors.conf #dnssec# Replies which are not DNSSEC signed may be legitimate, because the domain # is unsigned, or may be forgeries. Setting this option tells dnsmasq to # check that an unsigned reply is OK, by finding a secure proof that a DS # record somewhere between the root and the domain does not exist. # The cost of setting this is that even queries in unsigned domains will need # one or more extra DNS queries to verify. #dnssec-check-unsigned# Uncomment this to filter useless windows-originated DNS requests # which can trigger dial-on-demand links needlessly. # Note that (amongst other things) this blocks all SRV requests, # so don't use it if you use eg Kerberos, SIP, XMMP or Google-talk. # This option only affects forwarding, SRV records originating for # dnsmasq (via srv-host= lines) are not suppressed by it. #filterwin2k# Change this line if you want dns to get its upstream servers from # somewhere other that /etc/resolv.conf #resolv-file=# By default, dnsmasq will send queries to any of the upstream # servers it knows about and tries to favour servers to are known # to be up. Uncommenting this forces dnsmasq to try each query # with each server strictly in the order they appear in # /etc/resolv.conf #strict-order# If you don't want dnsmasq to read /etc/resolv.conf or any other # file, getting its servers from this file instead (see below), then # uncomment this. #no-resolv# If you don't want dnsmasq to poll /etc/resolv.conf or other resolv # files for changes and re-read them then uncomment this. #no-poll# Add other name servers here, with domain specs if they are for # non-public domains. #server=/localnet/192.168.0.1server=2400:3200::1 server=114.114.114.114# Example of routing PTR queries to nameservers: this will send all # address->name queries for 192.168.3/24 to nameserver 10.1.2.3 #server=/3.168.192.in-addr.arpa/10.1.2.3# Add local-only domains here, queries in these domains are answered # from /etc/hosts or DHCP only. #local=/localnet/# Add domains which you want to force to an IP address here. # The example below send any host in double-click.net to a local # web-server. #address=/double-click.net/127.0.0.1 address=/dns.test/10.10.10.1 address=/dns.test/2600::1# --address (and --server) work with IPv6 addresses too. #address=/www.thekelleys.org.uk/fe80::20d:60ff:fe36:f83# Add the IPs of all queries to yahoo.com, google.com, and their # subdomains to the vpn and search ipsets: #ipset=/yahoo.com/google.com/vpn,search# You can control how dnsmasq talks to a server: this forces # queries to 10.1.2.3 to be routed via eth1 # server=10.1.2.3@eth1# and this sets the source (ie local) address used to talk to # 10.1.2.3 to 192.168.1.1 port 55 (there must be an interface with that # IP on the machine, obviously). # server=10.1.2.3@192.168.1.1#55# If you want dnsmasq to change uid and gid to something other # than the default, edit the following lines. #user= #group=# If you want dnsmasq to listen for DHCP and DNS requests only on # specified interfaces (and the loopback) give the name of the # interface (eg eth0) here. # Repeat the line for more than one interface. #interface= # Or you can specify which interface _not_ to listen on #except-interface= # Or which to listen on by address (remember to include 127.0.0.1 if # you use this.) listen-address=127.0.0.1,10.10.10.1 listen-address=::1,2600::1# If you want dnsmasq to provide only DNS service on an interface, # configure it as shown above, and then use the following line to # disable DHCP and TFTP on it. #no-dhcp-interface=# On systems which support it, dnsmasq binds the wildcard address, # even when it is listening on only some interfaces. It then discards # requests that it shouldn't reply to. This has the advantage of # working even when interfaces come and go and change address. If you # want dnsmasq to really bind only the interfaces it is listening on, # uncomment this option. About the only time you may need this is when # running another nameserver on the same machine. #bind-interfaces# If you don't want dnsmasq to read /etc/hosts, uncomment the # following line. no-hosts# or if you want it to read another file, as well as /etc/hosts, use # this. #addn-hosts=/etc/banner_add_hosts# Set this (and domain: see below) if you want to have a domain # automatically added to simple names in a hosts-file. expand-hosts# Set the domain for dnsmasq. this is optional, but if it is set, it # does the following things. # 1) Allows DHCP hosts to have fully qualified domain names, as long # as the domain part matches this setting. # 2) Sets the "domain" DHCP option thereby potentially setting the # domain of all systems configured by DHCP # 3) Provides the domain part for "expand-hosts" #domain=thekelleys.org.uk domain=dns.test# Set a different domain for a particular subnet #domain=wireless.thekelleys.org.uk,192.168.2.0/24# Same idea, but range rather then subnet #domain=reserved.thekelleys.org.uk,192.68.3.100,192.168.3.200# Uncomment this to enable the integrated DHCP server, you need # to supply the range of addresses available for lease and optionally # a lease time. If you have more than one network, you will need to # repeat this for each network on which you want to supply DHCP # service. #dhcp-range=192.168.0.50,192.168.0.150,12h# This is an example of a DHCP range where the netmask is given. This # is needed for networks we reach the dnsmasq DHCP server via a relay # agent. If you don't know what a DHCP relay agent is, you probably # don't need to worry about this. #dhcp-range=192.168.0.50,192.168.0.150,255.255.255.0,12h# This is an example of a DHCP range which sets a tag, so that # some DHCP options may be set only for this network. #dhcp-range=set:red,192.168.0.50,192.168.0.150# Use this DHCP range only when the tag "green" is set. #dhcp-range=tag:green,192.168.0.50,192.168.0.150,12h# Specify a subnet which can't be used for dynamic address allocation, # is available for hosts with matching --dhcp-host lines. Note that # dhcp-host declarations will be ignored unless there is a dhcp-range # of some type for the subnet in question. # In this case the netmask is implied (it comes from the network # configuration on the machine running dnsmasq) it is possible to give # an explicit netmask instead. #dhcp-range=192.168.0.0,static# Enable DHCPv6. Note that the prefix-length does not need to be specified # and defaults to 64 if missing/ #dhcp-range=1234::2, 1234::500, 64, 12h# Do Router Advertisements, BUT NOT DHCP for this subnet. #dhcp-range=1234::, ra-only# Do Router Advertisements, BUT NOT DHCP for this subnet, also try and # add names to the DNS for the IPv6 address of SLAAC-configured dual-stack # hosts. Use the DHCPv4 lease to derive the name, network segment and # MAC address and assume that the host will also have an # IPv6 address calculated using the SLAAC algorithm. #dhcp-range=1234::, ra-names# Do Router Advertisements, BUT NOT DHCP for this subnet. # Set the lifetime to 46 hours. (Note: minimum lifetime is 2 hours.) #dhcp-range=1234::, ra-only, 48h# Do DHCP and Router Advertisements for this subnet. Set the A bit in the RA # so that clients can use SLAAC addresses as well as DHCP ones. #dhcp-range=1234::2, 1234::500, slaac# Do Router Advertisements and stateless DHCP for this subnet. Clients will # not get addresses from DHCP, but they will get other configuration information. # They will use SLAAC for addresses. #dhcp-range=1234::, ra-stateless# Do stateless DHCP, SLAAC, and generate DNS names for SLAAC addresses # from DHCPv4 leases. #dhcp-range=1234::, ra-stateless, ra-names# Do router advertisements for all subnets where we're doing DHCPv6 # Unless overridden by ra-stateless, ra-names, et al, the router # advertisements will have the M and O bits set, so that the clients # get addresses and configuration from DHCPv6, and the A bit reset, so the # clients don't use SLAAC addresses. #enable-ra# Supply parameters for specified hosts using DHCP. There are lots # of valid alternatives, so we will give examples of each. Note that # IP addresses DO NOT have to be in the range given above, they just # need to be on the same network. The order of the parameters in these # do not matter, it's permissible to give name, address and MAC in any # order.# Always allocate the host with Ethernet address 11:22:33:44:55:66 # The IP address 192.168.0.60 #dhcp-host=11:22:33:44:55:66,192.168.0.60# Always set the name of the host with hardware address # 11:22:33:44:55:66 to be "fred" #dhcp-host=11:22:33:44:55:66,fred# Always give the host with Ethernet address 11:22:33:44:55:66 # the name fred and IP address 192.168.0.60 and lease time 45 minutes #dhcp-host=11:22:33:44:55:66,fred,192.168.0.60,45m# Give a host with Ethernet address 11:22:33:44:55:66 or # 12:34:56:78:90:12 the IP address 192.168.0.60. Dnsmasq will assume # that these two Ethernet interfaces will never be in use at the same # time, and give the IP address to the second, even if it is already # in use by the first. Useful for laptops with wired and wireless # addresses. #dhcp-host=11:22:33:44:55:66,12:34:56:78:90:12,192.168.0.60# Give the machine which says its name is "bert" IP address # 192.168.0.70 and an infinite lease #dhcp-host=bert,192.168.0.70,infinite# Always give the host with client identifier 01:02:02:04 # the IP address 192.168.0.60 #dhcp-host=id:01:02:02:04,192.168.0.60# Always give the InfiniBand interface with hardware address # 80:00:00:48:fe:80:00:00:00:00:00:00:f4:52:14:03:00:28:05:81 the # ip address 192.168.0.61. The client id is derived from the prefix # ff:00:00:00:00:00:02:00:00:02:c9:00 and the last 8 pairs of # hex digits of the hardware address. #dhcp-host=id:ff:00:00:00:00:00:02:00:00:02:c9:00:f4:52:14:03:00:28:05:81,192.168.0.61# Always give the host with client identifier "marjorie" # the IP address 192.168.0.60 #dhcp-host=id:marjorie,192.168.0.60# Enable the address given for "judge" in /etc/hosts # to be given to a machine presenting the name "judge" when # it asks for a DHCP lease. #dhcp-host=judge# Never offer DHCP service to a machine whose Ethernet # address is 11:22:33:44:55:66 #dhcp-host=11:22:33:44:55:66,ignore# Ignore any client-id presented by the machine with Ethernet # address 11:22:33:44:55:66. This is useful to prevent a machine # being treated differently when running under different OS's or # between PXE boot and OS boot. #dhcp-host=11:22:33:44:55:66,id:*# Send extra options which are tagged as "red" to # the machine with Ethernet address 11:22:33:44:55:66 #dhcp-host=11:22:33:44:55:66,set:red# Send extra options which are tagged as "red" to # any machine with Ethernet address starting 11:22:33: #dhcp-host=11:22:33:*:*:*,set:red# Give a fixed IPv6 address and name to client with # DUID 00:01:00:01:16:d2:83:fc:92:d4:19:e2:d8:b2 # Note the MAC addresses CANNOT be used to identify DHCPv6 clients. # Note also that the [] around the IPv6 address are obligatory. #dhcp-host=id:00:01:00:01:16:d2:83:fc:92:d4:19:e2:d8:b2, fred, [1234::5]# Ignore any clients which are not specified in dhcp-host lines # or /etc/ethers. Equivalent to ISC "deny unknown-clients". # This relies on the special "known" tag which is set when # a host is matched. #dhcp-ignore=tag:!known# Send extra options which are tagged as "red" to any machine whose # DHCP vendorclass string includes the substring "Linux" #dhcp-vendorclass=set:red,Linux# Send extra options which are tagged as "red" to any machine one # of whose DHCP userclass strings includes the substring "accounts" #dhcp-userclass=set:red,accounts# Send extra options which are tagged as "red" to any machine whose # MAC address matches the pattern. #dhcp-mac=set:red,00:60:8C:*:*:*# If this line is uncommented, dnsmasq will read /etc/ethers and act # on the ethernet-address/IP pairs found there just as if they had # been given as --dhcp-host options. Useful if you keep # MAC-address/host mappings there for other purposes. #read-ethers# Send options to hosts which ask for a DHCP lease. # See RFC 2132 for details of available options. # Common options can be given to dnsmasq by name: # run "dnsmasq --help dhcp" to get a list. # Note that all the common settings, such as netmask and # broadcast address, DNS server and default route, are given # sane defaults by dnsmasq. You very likely will not need # any dhcp-options. If you use Windows clients and Samba, there # are some options which are recommended, they are detailed at the # end of this section.# Override the default route supplied by dnsmasq, which assumes the # router is the same machine as the one running dnsmasq. #dhcp-option=3,1.2.3.4# Do the same thing, but using the option name #dhcp-option=option:router,1.2.3.4# Override the default route supplied by dnsmasq and send no default # route at all. Note that this only works for the options sent by # default (1, 3, 6, 12, 28) the same line will send a zero-length option # for all other option numbers. #dhcp-option=3# Set the NTP time server addresses to 192.168.0.4 and 10.10.0.5 #dhcp-option=option:ntp-server,192.168.0.4,10.10.0.5# Send DHCPv6 option. Note [] around IPv6 addresses. #dhcp-option=option6:dns-server,[1234::77],[1234::88]# Send DHCPv6 option for namservers as the machine running # dnsmasq and another. #dhcp-option=option6:dns-server,[::],[1234::88]# Ask client to poll for option changes every six hours. (RFC4242) #dhcp-option=option6:information-refresh-time,6h# Set option 58 client renewal time (T1). Defaults to half of the # lease time if not specified. (RFC2132) #dhcp-option=option:T1,1m# Set option 59 rebinding time (T2). Defaults to 7/8 of the # lease time if not specified. (RFC2132) #dhcp-option=option:T2,2m# Set the NTP time server address to be the same machine as # is running dnsmasq #dhcp-option=42,0.0.0.0# Set the NIS domain name to "welly" #dhcp-option=40,welly# Set the default time-to-live to 50 #dhcp-option=23,50# Set the "all subnets are local" flag #dhcp-option=27,1# Send the etherboot magic flag and then etherboot options (a string). #dhcp-option=128,e4:45:74:68:00:00 #dhcp-option=129,NIC=eepro100# Specify an option which will only be sent to the "red" network # (see dhcp-range for the declaration of the "red" network) # Note that the tag: part must precede the option: part. #dhcp-option = tag:red, option:ntp-server, 192.168.1.1# The following DHCP options set up dnsmasq in the same way as is specified # for the ISC dhcpcd in # http://www.samba.org/samba/ftp/docs/textdocs/DHCP-Server-Configuration.txt # adapted for a typical dnsmasq installation where the host running # dnsmasq is also the host running samba. # you may want to uncomment some or all of them if you use # Windows clients and Samba. #dhcp-option=19,0 # option ip-forwarding off #dhcp-option=44,0.0.0.0 # set netbios-over-TCP/IP nameserver(s) aka WINS server(s) #dhcp-option=45,0.0.0.0 # netbios datagram distribution server #dhcp-option=46,8 # netbios node type# Send an empty WPAD option. This may be REQUIRED to get windows 7 to behave. #dhcp-option=252,"\n"# Send RFC-3397 DNS domain search DHCP option. WARNING: Your DHCP client # probably doesn't support this...... #dhcp-option=option:domain-search,eng.apple.com,marketing.apple.com# Send RFC-3442 classless static routes (note the netmask encoding) #dhcp-option=121,192.168.1.0/24,1.2.3.4,10.0.0.0/8,5.6.7.8# Send vendor-class specific options encapsulated in DHCP option 43. # The meaning of the options is defined by the vendor-class so # options are sent only when the client supplied vendor class # matches the class given here. (A substring match is OK, so "MSFT" # matches "MSFT" and "MSFT 5.0"). This example sets the # mtftp address to 0.0.0.0 for PXEClients. #dhcp-option=vendor:PXEClient,1,0.0.0.0# Send microsoft-specific option to tell windows to release the DHCP lease # when it shuts down. Note the "i" flag, to tell dnsmasq to send the # value as a four-byte integer - that's what microsoft wants. See # http://technet2.microsoft.com/WindowsServer/en/library/a70f1bb7-d2d4-49f0-96d6-4b7414ecfaae1033.mspx?mfr=true #dhcp-option=vendor:MSFT,2,1i# Send the Encapsulated-vendor-class ID needed by some configurations of # Etherboot to allow is to recognise the DHCP server. #dhcp-option=vendor:Etherboot,60,"Etherboot"# Send options to PXELinux. Note that we need to send the options even # though they don't appear in the parameter request list, so we need # to use dhcp-option-force here. # See http://syslinux.zytor.com/pxe.php#special for details. # Magic number - needed before anything else is recognised #dhcp-option-force=208,f1:00:74:7e # Configuration file name #dhcp-option-force=209,configs/common # Path prefix #dhcp-option-force=210,/tftpboot/pxelinux/files/ # Reboot time. (Note 'i' to send 32-bit value) #dhcp-option-force=211,30i# Set the boot filename for netboot/PXE. You will only need # this if you want to boot machines over the network and you will need # a TFTP server; either dnsmasq's built-in TFTP server or an # external one. (See below for how to enable the TFTP server.) #dhcp-boot=pxelinux.0# The same as above, but use custom tftp-server instead machine running dnsmasq #dhcp-boot=pxelinux,server.name,192.168.1.100# Boot for iPXE. The idea is to send two different # filenames, the first loads iPXE, and the second tells iPXE what to # load. The dhcp-match sets the ipxe tag for requests from iPXE. #dhcp-boot=undionly.kpxe #dhcp-match=set:ipxe,175 # iPXE sends a 175 option. #dhcp-boot=tag:ipxe,http://boot.ipxe.org/demo/boot.php# Encapsulated options for iPXE. All the options are # encapsulated within option 175 #dhcp-option=encap:175, 1, 5b # priority code #dhcp-option=encap:175, 176, 1b # no-proxydhcp #dhcp-option=encap:175, 177, string # bus-id #dhcp-option=encap:175, 189, 1b # BIOS drive code #dhcp-option=encap:175, 190, user # iSCSI username #dhcp-option=encap:175, 191, pass # iSCSI password# Test for the architecture of a netboot client. PXE clients are # supposed to send their architecture as option 93. (See RFC 4578) #dhcp-match=peecees, option:client-arch, 0 #x86-32 #dhcp-match=itanics, option:client-arch, 2 #IA64 #dhcp-match=hammers, option:client-arch, 6 #x86-64 #dhcp-match=mactels, option:client-arch, 7 #EFI x86-64# Do real PXE, rather than just booting a single file, this is an # alternative to dhcp-boot. #pxe-prompt="What system shall I netboot?" # or with timeout before first available action is taken: #pxe-prompt="Press F8 for menu.", 60# Available boot services. for PXE. #pxe-service=x86PC, "Boot from local disk"# Loads <tftp-root>/pxelinux.0 from dnsmasq TFTP server. #pxe-service=x86PC, "Install Linux", pxelinux# Loads <tftp-root>/pxelinux.0 from TFTP server at 1.2.3.4. # Beware this fails on old PXE ROMS. #pxe-service=x86PC, "Install Linux", pxelinux, 1.2.3.4# Use bootserver on network, found my multicast or broadcast. #pxe-service=x86PC, "Install windows from RIS server", 1# Use bootserver at a known IP address. #pxe-service=x86PC, "Install windows from RIS server", 1, 1.2.3.4# If you have multicast-FTP available, # information for that can be passed in a similar way using options 1 # to 5. See page 19 of # http://download.intel.com/design/archives/wfm/downloads/pxespec.pdf# Enable dnsmasq's built-in TFTP server #enable-tftp# Set the root directory for files available via FTP. #tftp-root=/var/ftpd# Do not abort if the tftp-root is unavailable #tftp-no-fail# Make the TFTP server more secure: with this set, only files owned by # the user dnsmasq is running as will be send over the net. #tftp-secure# This option stops dnsmasq from negotiating a larger blocksize for TFTP # transfers. It will slow things down, but may rescue some broken TFTP # clients. #tftp-no-blocksize# Set the boot file name only when the "red" tag is set. #dhcp-boot=tag:red,pxelinux.red-net# An example of dhcp-boot with an external TFTP server: the name and IP # address of the server are given after the filename. # Can fail with old PXE ROMS. Overridden by --pxe-service. #dhcp-boot=/var/ftpd/pxelinux.0,boothost,192.168.0.3# If there are multiple external tftp servers having a same name # (using /etc/hosts) then that name can be specified as the # tftp_servername (the third option to dhcp-boot) and in that # case dnsmasq resolves this name and returns the resultant IP # addresses in round robin fashion. This facility can be used to # load balance the tftp load among a set of servers. #dhcp-boot=/var/ftpd/pxelinux.0,boothost,tftp_server_name# Set the limit on DHCP leases, the default is 150 #dhcp-lease-max=150# The DHCP server needs somewhere on disk to keep its lease database. # This defaults to a sane location, but if you want to change it, use # the line below. #dhcp-leasefile=/var/lib/misc/dnsmasq.leases# Set the DHCP server to authoritative mode. In this mode it will barge in # and take over the lease for any client which broadcasts on the network, # whether it has a record of the lease or not. This avoids long timeouts # when a machine wakes up on a new network. DO NOT enable this if there's # the slightest chance that you might end up accidentally configuring a DHCP # server for your campus/company accidentally. The ISC server uses # the same option, and this URL provides more information: # http://www.isc.org/files/auth.html #dhcp-authoritative# Set the DHCP server to enable DHCPv4 Rapid Commit Option per RFC 4039. # In this mode it will respond to a DHCPDISCOVER message including a Rapid Commit # option with a DHCPACK including a Rapid Commit option and fully committed address # and configuration information. This must only be enabled if either the server is # the only server for the subnet, or multiple servers are present and they each # commit a binding for all clients. #dhcp-rapid-commit# Run an executable when a DHCP lease is created or destroyed. # The arguments sent to the script are "add" or "del", # then the MAC address, the IP address and finally the hostname # if there is one. #dhcp-script=/bin/echo# Set the cachesize here. #cache-size=150# If you want to disable negative caching, uncomment this. #no-negcache# Normally responses which come from /etc/hosts and the DHCP lease # file have Time-To-Live set as zero, which conventionally means # do not cache further. If you are happy to trade lower load on the # server for potentially stale date, you can set a time-to-live (in # seconds) here. #local-ttl=# If you want dnsmasq to detect attempts by Verisign to send queries # to unregistered .com and .net hosts to its sitefinder service and # have dnsmasq instead return the correct NXDOMAIN response, uncomment # this line. You can add similar lines to do the same for other # registries which have implemented wildcard A records. #bogus-nxdomain=64.94.110.11# If you want to fix up DNS results from upstream servers, use the # alias option. This only works for IPv4. # This alias makes a result of 1.2.3.4 appear as 5.6.7.8 #alias=1.2.3.4,5.6.7.8 # and this maps 1.2.3.x to 5.6.7.x #alias=1.2.3.0,5.6.7.0,255.255.255.0 # and this maps 192.168.0.10->192.168.0.40 to 10.0.0.10->10.0.0.40 #alias=192.168.0.10-192.168.0.40,10.0.0.0,255.255.255.0# Change these lines if you want dnsmasq to serve MX records.# Return an MX record named "maildomain.com" with target # servermachine.com and preference 50 #mx-host=maildomain.com,servermachine.com,50# Set the default target for MX records created using the localmx option. #mx-target=servermachine.com# Return an MX record pointing to the mx-target for all local # machines. #localmx# Return an MX record pointing to itself for all local machines. #selfmx# Change the following lines if you want dnsmasq to serve SRV # records. These are useful if you want to serve ldap requests for # Active Directory and other windows-originated DNS requests. # See RFC 2782. # You may add multiple srv-host lines. # The fields are <name>,<target>,<port>,<priority>,<weight> # If the domain part if missing from the name (so that is just has the # service and protocol sections) then the domain given by the domain= # config option is used. (Note that expand-hosts does not need to be # set for this to work.)# A SRV record sending LDAP for the example.com domain to # ldapserver.example.com port 389 #srv-host=_ldap._tcp.example.com,ldapserver.example.com,389# A SRV record sending LDAP for the example.com domain to # ldapserver.example.com port 389 (using domain=) #domain=example.com #srv-host=_ldap._tcp,ldapserver.example.com,389# Two SRV records for LDAP, each with different priorities #srv-host=_ldap._tcp.example.com,ldapserver.example.com,389,1 #srv-host=_ldap._tcp.example.com,ldapserver.example.com,389,2# A SRV record indicating that there is no LDAP server for the domain # example.com #srv-host=_ldap._tcp.example.com# The following line shows how to make dnsmasq serve an arbitrary PTR # record. This is useful for DNS-SD. (Note that the # domain-name expansion done for SRV records _does_not # occur for PTR records.) #ptr-record=_http._tcp.dns-sd-services,"New Employee Page._http._tcp.dns-sd-services"# Change the following lines to enable dnsmasq to serve TXT records. # These are used for things like SPF and zeroconf. (Note that the # domain-name expansion done for SRV records _does_not # occur for TXT records.)#Example SPF. #txt-record=example.com,"v=spf1 a -all"#Example zeroconf #txt-record=_http._tcp.example.com,name=value,paper=A4# Provide an alias for a "local" DNS name. Note that this _only_ works # for targets which are names from DHCP or /etc/hosts. Give host # "bert" another name, bertrand #cname=bertand,bert# For debugging purposes, log each DNS query as it passes through # dnsmasq. log-queries log-facility=var/log/dnsmasq.log# Log lots of extra information about DHCP transactions. #log-dhcp# Include another lot of configuration options. #conf-file=/etc/dnsmasq.more.conf conf-dir=/etc/dnsmasq.d# Include all the files in a directory except those ending in .bak conf-dir=/etc/dnsmasq.d,.bak# Include all files in a directory which end in .conf conf-dir=/etc/dnsmasq.d/,*.conf# If a DHCP client claims that its name is "wpad", ignore that. # This fixes a security hole. see CERT Vulnerability VU#598349 #dhcp-name-match=set:wpad-ignore,wpad #dhcp-ignore-names=tag:wpad-ignore

保存之后通過dnsmasq --test檢查語法是否有問題,如果沒有問題則啟動dnsmasq

systemctl start dnsmasq systemctl enable dnsmasq

?3.設置dnsmasq和本機dns的關聯

修改/etc/resolv.conf

nameserver 127.0.0.1 nameserver ::1

修改etc/hosts文件

127.0.0.1 dnsmasq ::1 dnsmasq

4.配置gfwlist

? ? ? gfwlist是一個公益項目,它把被GFW屏蔽的網站做了一個匯總,并以文件的方式提供給大家,項目地址:https://github.com/gfwlist/gfwlist

? ? ? ?gfwlist下載下來的文本格式不是dnsmasq能使用的格式,因此需要將其轉化為能識別的文件,可以通過python程序將原始gfwlist文件轉換為dnsmasq能讀懂的格式。

vi dns-gfwlist.py #!/usr/bin/env python #coding=utf-8 # # Generate a list of dnsmasq rules with ipset for gfwlist # # Copyright (C) 2014 http://www.shuyz.com # Ref https://code.google.com/p/autoproxy-gfwlist/wiki/Rulesimport urllib2 import re import os import datetime import base64 import shutilmydnsip = '8.8.8.8' mydnsipv6 = '2001:4860:4860::8888' mydnsport = '53'# the url of gfwlist baseurl = 'https://raw.githubusercontent.com/gfwlist/gfwlist/master/gfwlist.txt' # match comments/title/whitelist/ip address comment_pattern = '^\!|\[|^@@|^\d+\.\d+\.\d+\.\d+' domain_pattern = '([\w\-\_]+\.[\w\.\-\_]+)[\/\*]*' tmpfile = '/tmp/gfwlisttmp' # do not write to router internal flash directly outfile = '/tmp/gfwlist.conf' rulesfile = '/etc/dnsmasq.d/gfwlist.conf'fs = file(outfile, 'w') fs.write('# gfw list ipset rules for dnsmasq\n') fs.write('# updated on ' + datetime.datetime.now().strftime("%Y-%m-%d %H:%M:%S") + '\n') fs.write('#\n')print 'fetching list...' content = urllib2.urlopen(baseurl, timeout=15).read().decode('base64')# write the decoded content to file then read line by line tfs = open(tmpfile, 'w') tfs.write(content) tfs.close() tfs = open(tmpfile, 'r')print 'page content fetched, analysis...'# remember all blocked domains, in case of duplicate records domainlist = []for line in tfs.readlines():if re.findall(comment_pattern, line):print 'this is a comment line: ' + line#fs.write('#' + line)else:domain = re.findall(domain_pattern, line)if domain:try:found = domainlist.index(domain[0])print domain[0] + ' exists.'except ValueError:print 'saving ' + domain[0]domainlist.append(domain[0])fs.write('server=/.%s/%s#%s\n'%(domain[0],mydnsip,mydnsport))fs.write('server=/.%s/%s#%s\n'%(domain[0],mydnsipv6,mydnsport))else:print 'no valid domain in this line: ' + linetfs.close() fs.close();print 'moving generated file to dnsmasg directory' shutil.move(outfile, rulesfile)print 'restart dnsmasq...' print os.popen('/etc/init.d/dnsmasq restart').read()print 'done!'

執行python程序

apt install python2.7 python2.7 dns-gfwlist.py

?檢查/etc/dnsmasq.d/gfwlist.conf文件

如果有一大堆的

server=/.phobos.apple.com/8.8.8.8#53
server=/.phobos.apple.com/2001:4860:4860::8888#53

表示文件沒有問題,系統搭建成功

三、系統測試

測試國內的域名

nslookup qq.com

查看/var/log/dnsmasq.log發現的是國內的dns解析

Nov 22 16:27:24 dnsmasq[23591]: query[A] qq.com from 127.0.0.1
Nov 22 16:27:24 dnsmasq[23591]: forwarded qq.com to 114.114.114.114
Nov 22 16:27:25 dnsmasq[23591]: query[A] qq.com from ::1
Nov 22 16:27:25 dnsmasq[23591]: forwarded qq.com to 114.114.114.114
Nov 22 16:27:30 dnsmasq[23591]: query[A] qq.com from 127.0.0.1
Nov 22 16:27:30 dnsmasq[23591]: forwarded qq.com to 114.114.114.114
Nov 22 16:27:31 dnsmasq[23591]: query[A] qq.com from ::1
Nov 22 16:27:31 dnsmasq[23591]: forwarded qq.com to 114.114.114.114
Nov 22 16:27:36 dnsmasq[23591]: query[A] qq.com from 127.0.0.1
Nov 22 16:27:36 dnsmasq[23591]: forwarded qq.com to 114.114.114.114
Nov 22 16:27:37 dnsmasq[23591]: query[A] qq.com from ::1
Nov 22 16:27:37 dnsmasq[23591]: forwarded qq.com to 114.114.114.114

測試國外的域名

nslookup google.com

查看log走的是國外的dns解析

Nov 22 16:31:43 dnsmasq[23591]: query[A] google.com from 127.0.0.1
Nov 22 16:31:43 dnsmasq[23591]: forwarded google.com to 8.8.8.8
Nov 22 16:31:43 dnsmasq[23591]: forwarded google.com to 2001:4860:4860::8888
Nov 22 16:31:43 dnsmasq[23591]: forwarded google.com to 8.8.8.8
Nov 22 16:31:43 dnsmasq[23591]: forwarded google.com to 127.0.0.1
Nov 22 16:31:43 dnsmasq[23591]: ipset add gfwlist 142.251.32.110 google.com
Nov 22 16:31:43 dnsmasq[23591]: reply google.com is 142.251.32.110
Nov 22 16:31:43 dnsmasq[23591]: query[AAAA] google.com from 127.0.0.1
Nov 22 16:31:43 dnsmasq[23591]: forwarded google.com to 8.8.8.8
Nov 22 16:31:43 dnsmasq[23591]: forwarded google.com to 2001:4860:4860::8888
Nov 22 16:31:43 dnsmasq[23591]: forwarded google.com to 8.8.8.8
Nov 22 16:31:43 dnsmasq[23591]: forwarded google.com to 127.0.0.1
Nov 22 16:31:43 dnsmasq[23591]: ipset add gfwlist 2607:f8b0:4006:81d::200e google.com
Nov 22 16:31:43 dnsmasq[23591]: reply google.com is 2607:f8b0:4006:81d::200e

結果顯示分流成功,此系統搭建完成?

總結

以上是生活随笔為你收集整理的dnsmasq国内外域名分流系统搭建的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。

日韩欧美成人免费观看 | 久久国产精品_国产精品 | 四虎影视成人永久免费观看视频 | 中文字幕无线码 | 精品一区二区三区波多野结衣 | 亚洲成a人片在线观看无码 | 内射老妇bbwx0c0ck | 日韩精品久久久肉伦网站 | а√天堂www在线天堂小说 | 人人澡人摸人人添 | 中文字幕无码日韩欧毛 | 亚洲精品欧美二区三区中文字幕 | 亚洲综合无码一区二区三区 | 成人无码精品一区二区三区 | 伊人色综合久久天天小片 | 我要看www免费看插插视频 | 欧美精品免费观看二区 | 97精品人妻一区二区三区香蕉 | 国精品人妻无码一区二区三区蜜柚 | 国产成人午夜福利在线播放 | 中文字幕无码免费久久9一区9 | a在线观看免费网站大全 | 一二三四在线观看免费视频 | 国产69精品久久久久app下载 | 双乳奶水饱满少妇呻吟 | 人人爽人人爽人人片av亚洲 | 国产免费无码一区二区视频 | 国产又爽又猛又粗的视频a片 | 熟妇女人妻丰满少妇中文字幕 | 乌克兰少妇xxxx做受 | 国产极品美女高潮无套在线观看 | 亚洲国产av精品一区二区蜜芽 | 亚洲国产精品久久久天堂 | 久久天天躁夜夜躁狠狠 | 亚洲色www成人永久网址 | 色窝窝无码一区二区三区色欲 | 成人免费视频视频在线观看 免费 | 亚洲精品久久久久avwww潮水 | 亚洲伊人久久精品影院 | 特黄特色大片免费播放器图片 | 日韩av无码一区二区三区不卡 | 无码国内精品人妻少妇 | 老子影院午夜伦不卡 | 欧美黑人巨大xxxxx | 中文久久乱码一区二区 | 少妇无码av无码专区在线观看 | www国产亚洲精品久久网站 | 水蜜桃av无码 | 宝宝好涨水快流出来免费视频 | 中文字幕久久久久人妻 | 久久人人爽人人爽人人片av高清 | 精品国产一区二区三区av 性色 | 欧美性黑人极品hd | 国产香蕉尹人视频在线 | 久久无码中文字幕免费影院蜜桃 | 亚洲日韩精品欧美一区二区 | 人人妻人人澡人人爽人人精品浪潮 | 日韩av激情在线观看 | 好屌草这里只有精品 | 欧美乱妇无乱码大黄a片 | 国产精品久久国产三级国 | 国产乱人伦app精品久久 国产在线无码精品电影网 国产国产精品人在线视 | 欧美日本日韩 | 久久99精品国产麻豆 | 2019nv天堂香蕉在线观看 | 无码一区二区三区在线观看 | 久久精品国产99精品亚洲 | 精品无码成人片一区二区98 | 亚洲午夜福利在线观看 | 日本精品高清一区二区 | 免费无码午夜福利片69 | 亚洲色无码一区二区三区 | 玩弄中年熟妇正在播放 | 精品无码一区二区三区爱欲 | 无码成人精品区在线观看 | 色婷婷综合中文久久一本 | 中文字幕无码日韩专区 | 丰满人妻一区二区三区免费视频 | 欧美阿v高清资源不卡在线播放 | 99久久人妻精品免费二区 | 精品无码国产自产拍在线观看蜜 | 欧美大屁股xxxxhd黑色 | 97久久精品无码一区二区 | 国产精品亚洲一区二区三区喷水 | 日本熟妇浓毛 | 国产美女精品一区二区三区 | 乌克兰少妇xxxx做受 | 婷婷丁香六月激情综合啪 | 午夜性刺激在线视频免费 | 国产午夜精品一区二区三区嫩草 | 亚洲精品一区二区三区婷婷月 | 亚洲色无码一区二区三区 | 乱中年女人伦av三区 | 99riav国产精品视频 | 国产午夜手机精彩视频 | 丰满岳乱妇在线观看中字无码 | 国产乱码精品一品二品 | 成人影院yy111111在线观看 | 色情久久久av熟女人妻网站 | 丁香花在线影院观看在线播放 | 免费网站看v片在线18禁无码 | 97精品人妻一区二区三区香蕉 | 亚洲另类伦春色综合小说 | 99久久人妻精品免费一区 | 精品熟女少妇av免费观看 | 一本加勒比波多野结衣 | 天天摸天天碰天天添 | 超碰97人人射妻 | 日本熟妇人妻xxxxx人hd | 又湿又紧又大又爽a视频国产 | 国产精品嫩草久久久久 | 性欧美videos高清精品 | 日韩人妻系列无码专区 | 亚洲狠狠色丁香婷婷综合 | 久久综合香蕉国产蜜臀av | 中文字幕无码免费久久99 | 无码av最新清无码专区吞精 | 又紧又大又爽精品一区二区 | 精品一区二区不卡无码av | 亚洲七七久久桃花影院 | 亚洲国产精品一区二区第一页 | 在线天堂新版最新版在线8 | 国产亚洲日韩欧美另类第八页 | 欧美国产日韩久久mv | 亚洲爆乳大丰满无码专区 | 露脸叫床粗话东北少妇 | 樱花草在线社区www | 少妇人妻av毛片在线看 | 久久精品成人欧美大片 | 色欲久久久天天天综合网精品 | 天天爽夜夜爽夜夜爽 | 一本色道婷婷久久欧美 | 131美女爱做视频 | 久久久精品国产sm最大网站 | 高潮毛片无遮挡高清免费视频 | 精品国产国产综合精品 | 亚洲日本va午夜在线电影 | 国产亚洲日韩欧美另类第八页 | 少妇性荡欲午夜性开放视频剧场 | 丁香啪啪综合成人亚洲 | 亚洲日本va午夜在线电影 | 奇米影视7777久久精品人人爽 | 午夜福利一区二区三区在线观看 | 久久久www成人免费毛片 | 久久久久成人片免费观看蜜芽 | 亚洲小说图区综合在线 | 国内揄拍国内精品人妻 | 国产香蕉97碰碰久久人人 | 中文字幕无码免费久久99 | 中文字幕人妻无码一区二区三区 | 我要看www免费看插插视频 | 中文字幕乱码中文乱码51精品 | 亚洲中文字幕在线观看 | 国产人妻久久精品二区三区老狼 | 玩弄少妇高潮ⅹxxxyw | 日本丰满护士爆乳xxxx | 欧美猛少妇色xxxxx | 国产av一区二区精品久久凹凸 | 国产精品人人妻人人爽 | 国产片av国语在线观看 | 国产亚洲精品久久久久久大师 | 亚洲国产综合无码一区 | 又黄又爽又色的视频 | 亚洲一区二区三区含羞草 | 国产成人午夜福利在线播放 | 人妻体内射精一区二区三四 | 国内揄拍国内精品人妻 | 青青草原综合久久大伊人精品 | 国产成人精品久久亚洲高清不卡 | 给我免费的视频在线观看 | 狠狠色色综合网站 | 欧美大屁股xxxxhd黑色 | 国内精品九九久久久精品 | 蜜臀aⅴ国产精品久久久国产老师 | 中文亚洲成a人片在线观看 | 国产精品多人p群无码 | 2020最新国产自产精品 | 四虎永久在线精品免费网址 | 亚洲春色在线视频 | 日本xxxx色视频在线观看免费 | 日本精品人妻无码77777 天堂一区人妻无码 | 最近中文2019字幕第二页 | 国产精品久久久久7777 | 狠狠色丁香久久婷婷综合五月 | 波多野结衣乳巨码无在线观看 | 秋霞成人午夜鲁丝一区二区三区 | 久久无码人妻影院 | 少妇高潮一区二区三区99 | 漂亮人妻洗澡被公强 日日躁 | 国产精品第一国产精品 | 精品无码一区二区三区的天堂 | 无遮挡啪啪摇乳动态图 | 人妻与老人中文字幕 | 久久国产精品_国产精品 | 日本护士毛茸茸高潮 | 中文字幕乱码人妻二区三区 | 亚拍精品一区二区三区探花 | 人人爽人人澡人人人妻 | 人妻插b视频一区二区三区 | 福利一区二区三区视频在线观看 | 久久久精品人妻久久影视 | 日日麻批免费40分钟无码 | 一二三四社区在线中文视频 | 精品国偷自产在线 | 日本熟妇人妻xxxxx人hd | 国产成人精品优优av | 久久久久免费看成人影片 | 欧美人与牲动交xxxx | 欧美喷潮久久久xxxxx | 男人和女人高潮免费网站 | 国产精品99爱免费视频 | 无套内谢的新婚少妇国语播放 | 强辱丰满人妻hd中文字幕 | 日本熟妇浓毛 | 乱中年女人伦av三区 | 天堂一区人妻无码 | 亚洲色欲久久久综合网东京热 | 300部国产真实乱 | 思思久久99热只有频精品66 | 夜夜躁日日躁狠狠久久av | 老太婆性杂交欧美肥老太 | 男人扒开女人内裤强吻桶进去 | 99er热精品视频 | 乱人伦人妻中文字幕无码久久网 | 亚洲综合无码久久精品综合 | 国产黄在线观看免费观看不卡 | 色欲人妻aaaaaaa无码 | 双乳奶水饱满少妇呻吟 | 国产精品香蕉在线观看 | 内射老妇bbwx0c0ck | 曰韩少妇内射免费播放 | 国产成人精品久久亚洲高清不卡 | 天堂亚洲免费视频 | 夜精品a片一区二区三区无码白浆 | 国产超碰人人爽人人做人人添 | 国产av无码专区亚洲awww | 国产乱子伦视频在线播放 | 亚洲国产精品一区二区美利坚 | 午夜精品一区二区三区的区别 | 亚洲一区二区三区国产精华液 | 国产精品久久久久9999小说 | 国产精品办公室沙发 | 亚洲爆乳大丰满无码专区 | 中文字幕日产无线码一区 | 狂野欧美激情性xxxx | 一本色道婷婷久久欧美 | 老司机亚洲精品影院 | 99久久久国产精品无码免费 | 亚洲精品国产第一综合99久久 | 久久久久亚洲精品中文字幕 | 精品无人国产偷自产在线 | 亚洲va欧美va天堂v国产综合 | 蜜臀av在线播放 久久综合激激的五月天 | 性生交大片免费看l | 久久午夜无码鲁丝片秋霞 | 国产成人综合色在线观看网站 | 日本丰满熟妇videos | 日本熟妇大屁股人妻 | 无码人妻丰满熟妇区毛片18 | 国产成人综合在线女婷五月99播放 | 久久综合狠狠综合久久综合88 | 国产熟妇高潮叫床视频播放 | 乱码午夜-极国产极内射 | 人妻aⅴ无码一区二区三区 | 久久精品国产亚洲精品 | 亚洲一区二区三区 | 色一情一乱一伦一视频免费看 | 亚洲精品一区三区三区在线观看 | 精品国产av色一区二区深夜久久 | 亚洲综合无码一区二区三区 | 少妇无码一区二区二三区 | 熟妇人妻激情偷爽文 | 风流少妇按摩来高潮 | 国产精品美女久久久网av | 亚洲 激情 小说 另类 欧美 | 乱人伦人妻中文字幕无码 | 又大又黄又粗又爽的免费视频 | 综合激情五月综合激情五月激情1 | 久久人人爽人人爽人人片av高清 | 天下第一社区视频www日本 | 国产免费久久精品国产传媒 | 久久人人爽人人人人片 | 国产亚洲人成a在线v网站 | 伊人久久大香线蕉亚洲 | 久久精品一区二区三区四区 | 国产成人精品必看 | 亚洲理论电影在线观看 | 免费乱码人妻系列无码专区 | 久久99热只有频精品8 | 少女韩国电视剧在线观看完整 | 97无码免费人妻超级碰碰夜夜 | 国产亚洲精品久久久久久 | 在线a亚洲视频播放在线观看 | 亚洲欧美国产精品专区久久 | 免费人成在线观看网站 | 无套内谢的新婚少妇国语播放 | 久久99精品久久久久婷婷 | 夜夜躁日日躁狠狠久久av | 国产精品无码mv在线观看 | 国产国语老龄妇女a片 | 成年美女黄网站色大免费全看 | 亚洲中文字幕成人无码 | 一本大道久久东京热无码av | 亚洲男女内射在线播放 | 自拍偷自拍亚洲精品被多人伦好爽 | 曰本女人与公拘交酡免费视频 | 十八禁视频网站在线观看 | 美女张开腿让人桶 | 在线精品亚洲一区二区 | 在线视频网站www色 | 成人av无码一区二区三区 | 在线成人www免费观看视频 | 久久精品国产大片免费观看 | 午夜福利一区二区三区在线观看 | 亚洲精品国产品国语在线观看 | 国产精品二区一区二区aⅴ污介绍 | 中文字幕无线码免费人妻 | 欧美精品无码一区二区三区 | 女人被爽到呻吟gif动态图视看 | 国产精品亚洲一区二区三区喷水 | 亚洲区小说区激情区图片区 | 成人毛片一区二区 | 性欧美熟妇videofreesex | 欧美人与牲动交xxxx | 国产精品福利视频导航 | 欧美三级a做爰在线观看 | 国产性生大片免费观看性 | 日本熟妇人妻xxxxx人hd | 人人妻人人澡人人爽欧美一区九九 | 又色又爽又黄的美女裸体网站 | 国内揄拍国内精品人妻 | 暴力强奷在线播放无码 | 97无码免费人妻超级碰碰夜夜 | 两性色午夜免费视频 | 无码精品国产va在线观看dvd | 在线a亚洲视频播放在线观看 | 亚洲精品国产精品乱码不卡 | 领导边摸边吃奶边做爽在线观看 | 国产成人无码午夜视频在线观看 | 国产精品免费大片 | 老熟妇仑乱视频一区二区 | 日韩精品一区二区av在线 | 嫩b人妻精品一区二区三区 | 国产美女极度色诱视频www | 在线播放无码字幕亚洲 | 麻豆精产国品 | 5858s亚洲色大成网站www | 亚洲国产日韩a在线播放 | 亚洲 日韩 欧美 成人 在线观看 | 亚洲国产成人a精品不卡在线 | 在线观看免费人成视频 | 国产一区二区三区日韩精品 | 欧洲精品码一区二区三区免费看 | 国产偷自视频区视频 | 精品国产av色一区二区深夜久久 | 成人精品视频一区二区三区尤物 | 色情久久久av熟女人妻网站 | 性欧美牲交xxxxx视频 | 青青久在线视频免费观看 | 久久综合九色综合97网 | 亚洲第一网站男人都懂 | 中文字幕无码热在线视频 | 亚洲男人av天堂午夜在 | 97无码免费人妻超级碰碰夜夜 | 国产成人无码a区在线观看视频app | 一个人免费观看的www视频 | 国产成人人人97超碰超爽8 | 色欲久久久天天天综合网精品 | 波多野结衣一区二区三区av免费 | 99久久久无码国产aaa精品 | 一本久道久久综合狠狠爱 | 少妇无码av无码专区在线观看 | 亚洲色偷偷男人的天堂 | 性欧美videos高清精品 | 日日天日日夜日日摸 | 国产乱人无码伦av在线a | 日本护士毛茸茸高潮 | 又大又黄又粗又爽的免费视频 | 中文字幕无线码 | 中文字幕日韩精品一区二区三区 | 国产成人精品优优av | 欧美黑人乱大交 | 水蜜桃色314在线观看 | 精品水蜜桃久久久久久久 | 人妻体内射精一区二区三四 | 久久99精品久久久久久 | 国产精品美女久久久久av爽李琼 | 老子影院午夜伦不卡 | 丰满人妻翻云覆雨呻吟视频 | 国产av剧情md精品麻豆 | 欧洲熟妇精品视频 | 日韩精品成人一区二区三区 | 又湿又紧又大又爽a视频国产 | 亚洲成a人片在线观看无码3d | 久久97精品久久久久久久不卡 | 日韩视频 中文字幕 视频一区 | 国产av无码专区亚洲a∨毛片 | 夜夜夜高潮夜夜爽夜夜爰爰 | 欧美国产亚洲日韩在线二区 | 人人澡人人透人人爽 | 久久久久久a亚洲欧洲av冫 | 久热国产vs视频在线观看 | 99久久久国产精品无码免费 | 精品久久久久久人妻无码中文字幕 | 免费乱码人妻系列无码专区 | 欧美日韩一区二区免费视频 | 免费国产成人高清在线观看网站 | 性色av无码免费一区二区三区 | 欧美午夜特黄aaaaaa片 | 成 人影片 免费观看 | 人人爽人人澡人人高潮 | 国内精品人妻无码久久久影院蜜桃 | 久久综合给合久久狠狠狠97色 | 男人扒开女人内裤强吻桶进去 | 粉嫩少妇内射浓精videos | 乱码午夜-极国产极内射 | 99久久精品日本一区二区免费 | 青青青爽视频在线观看 | 成 人 网 站国产免费观看 | 精品厕所偷拍各类美女tp嘘嘘 | 图片区 小说区 区 亚洲五月 | 伊人久久大香线蕉av一区二区 | 激情亚洲一区国产精品 | 亚洲精品无码人妻无码 | 日本一区二区更新不卡 | 亚洲精品久久久久avwww潮水 | 久久久久国色av免费观看性色 | 国产午夜精品一区二区三区嫩草 | 精品久久久中文字幕人妻 | 丁香花在线影院观看在线播放 | 国产成人无码a区在线观看视频app | 人人超人人超碰超国产 | 精品偷拍一区二区三区在线看 | 亚洲 日韩 欧美 成人 在线观看 | 又大又黄又粗又爽的免费视频 | 最新版天堂资源中文官网 | 国内精品一区二区三区不卡 | 人妻插b视频一区二区三区 | www国产精品内射老师 | 兔费看少妇性l交大片免费 | 国产精品香蕉在线观看 | 亚洲欧美国产精品专区久久 | 欧美精品一区二区精品久久 | 性欧美熟妇videofreesex | 夜精品a片一区二区三区无码白浆 | 欧美大屁股xxxxhd黑色 | 99久久久无码国产精品免费 | 精品水蜜桃久久久久久久 | 亚洲国产精品久久久久久 | 麻花豆传媒剧国产免费mv在线 | 久久精品一区二区三区四区 | 国产熟妇另类久久久久 | 性欧美牲交在线视频 | 精品国产精品久久一区免费式 | 小泽玛莉亚一区二区视频在线 | 国产女主播喷水视频在线观看 | 欧美成人免费全部网站 | 久久无码人妻影院 | 久久人人爽人人人人片 | 亚洲高清偷拍一区二区三区 | 国产精品亚洲а∨无码播放麻豆 | 亚洲色www成人永久网址 | 欧美人与禽猛交狂配 | 成人无码精品1区2区3区免费看 | 综合人妻久久一区二区精品 | 亚洲综合无码久久精品综合 | 99国产精品白浆在线观看免费 | 成熟妇人a片免费看网站 | 国产精品人人妻人人爽 | 久久久久久国产精品无码下载 | 亚洲乱亚洲乱妇50p | 亚洲综合无码一区二区三区 | 国产成人无码专区 | 一本大道伊人av久久综合 | 狠狠色丁香久久婷婷综合五月 | 亚洲成av人在线观看网址 | 久激情内射婷内射蜜桃人妖 | 国产无套内射久久久国产 | 丰满人妻翻云覆雨呻吟视频 | 久久亚洲中文字幕精品一区 | 亚洲精品中文字幕乱码 | 国产人妻大战黑人第1集 | 麻豆国产人妻欲求不满 | 国产后入清纯学生妹 | 熟女少妇在线视频播放 | 亚洲熟女一区二区三区 | 色婷婷av一区二区三区之红樱桃 | 性欧美熟妇videofreesex | 国产精品无码一区二区桃花视频 | 97资源共享在线视频 | 一本色道婷婷久久欧美 | 国内精品久久毛片一区二区 | 国产区女主播在线观看 | 在线 国产 欧美 亚洲 天堂 | 精品无码av一区二区三区 | 中文字幕av无码一区二区三区电影 | 爽爽影院免费观看 | 日本精品久久久久中文字幕 | 国産精品久久久久久久 | 黑人巨大精品欧美黑寡妇 | 久久精品中文字幕大胸 | 国产精品亚洲lv粉色 | 一个人看的www免费视频在线观看 | 人人妻人人澡人人爽人人精品 | 精品亚洲韩国一区二区三区 | 精品国偷自产在线 | 偷窥村妇洗澡毛毛多 | 毛片内射-百度 | 丝袜美腿亚洲一区二区 | 捆绑白丝粉色jk震动捧喷白浆 | 色综合视频一区二区三区 | 国内精品人妻无码久久久影院蜜桃 | 国产三级久久久精品麻豆三级 | 国产精品无码一区二区三区不卡 | 日本大乳高潮视频在线观看 | 国产精品自产拍在线观看 | 人人妻人人澡人人爽欧美一区 | 一个人看的视频www在线 | 2020最新国产自产精品 | а√资源新版在线天堂 | 欧美日韩久久久精品a片 | 亚洲精品中文字幕乱码 | 奇米影视888欧美在线观看 | 亚洲色大成网站www | 免费看男女做好爽好硬视频 | 国产一区二区三区精品视频 | 内射后入在线观看一区 | 欧美老熟妇乱xxxxx | 日韩欧美成人免费观看 | 图片区 小说区 区 亚洲五月 | 久久久精品人妻久久影视 | 中文字幕无码视频专区 | 亚洲精品成人福利网站 | 丰满诱人的人妻3 | 强伦人妻一区二区三区视频18 | 伦伦影院午夜理论片 | 日韩精品无码一区二区中文字幕 | 亚洲日韩中文字幕在线播放 | 三上悠亚人妻中文字幕在线 | 日韩av无码一区二区三区 | 国产av人人夜夜澡人人爽麻豆 | 久久99精品久久久久久 | 欧美黑人性暴力猛交喷水 | 免费看男女做好爽好硬视频 | 蜜桃无码一区二区三区 | ass日本丰满熟妇pics | aⅴ亚洲 日韩 色 图网站 播放 | 99国产欧美久久久精品 | 天天摸天天碰天天添 | 亚洲爆乳大丰满无码专区 | 色妞www精品免费视频 | 国产区女主播在线观看 | 久久久久99精品成人片 | 九一九色国产 | 国产成人精品必看 | 岛国片人妻三上悠亚 | 极品嫩模高潮叫床 | 妺妺窝人体色www婷婷 | 乱码av麻豆丝袜熟女系列 | 国产极品视觉盛宴 | 亚洲乱码日产精品bd | 国产精品欧美成人 | 青草青草久热国产精品 | 国产亚洲精品久久久久久久 | 丰满少妇熟乱xxxxx视频 | 夜夜高潮次次欢爽av女 | 精品久久久久久人妻无码中文字幕 | 精品成在人线av无码免费看 | 在线播放亚洲第一字幕 | 丁香花在线影院观看在线播放 | 久久精品国产亚洲精品 | 婷婷五月综合激情中文字幕 | 免费无码av一区二区 | 国产精品久久久久无码av色戒 | 内射爽无广熟女亚洲 | 日本精品少妇一区二区三区 | 无遮挡国产高潮视频免费观看 | 国产精品久久福利网站 | 特级做a爰片毛片免费69 | 国产午夜视频在线观看 | 色一情一乱一伦一视频免费看 | 国产成人无码一二三区视频 | 无码帝国www无码专区色综合 | 国产日产欧产精品精品app | 久久国产自偷自偷免费一区调 | 亚洲经典千人经典日产 | 亚欧洲精品在线视频免费观看 | 国产精品福利视频导航 | 国产亚洲tv在线观看 | 蜜桃臀无码内射一区二区三区 | 高清国产亚洲精品自在久久 | 无码国产激情在线观看 | 高清不卡一区二区三区 | 无码人妻出轨黑人中文字幕 | 综合激情五月综合激情五月激情1 | 国产香蕉尹人综合在线观看 | 国产超碰人人爽人人做人人添 | 麻豆果冻传媒2021精品传媒一区下载 | 精品午夜福利在线观看 | 国产色xx群视频射精 | 一本无码人妻在中文字幕免费 | 欧美自拍另类欧美综合图片区 | 婷婷综合久久中文字幕蜜桃三电影 | 国产在线一区二区三区四区五区 | 国产香蕉尹人综合在线观看 | 国产一区二区三区日韩精品 | 久久精品国产99久久6动漫 | 精品无码国产一区二区三区av | 欧美黑人乱大交 | 国产97在线 | 亚洲 | 久久久久久久人妻无码中文字幕爆 | 高潮喷水的毛片 | 成人亚洲精品久久久久软件 | 久久无码中文字幕免费影院蜜桃 | 天天摸天天透天天添 | 国产在线精品一区二区高清不卡 | 国产成人一区二区三区别 | 成人无码影片精品久久久 | 亚洲色无码一区二区三区 | 久久久久成人片免费观看蜜芽 | 国产三级精品三级男人的天堂 | 丰满少妇熟乱xxxxx视频 | 东京热无码av男人的天堂 | aⅴ亚洲 日韩 色 图网站 播放 | 伊人久久大香线焦av综合影院 | 天堂а√在线中文在线 | 人妻中文无码久热丝袜 | 蜜臀av在线播放 久久综合激激的五月天 | 日本一区二区三区免费高清 | 特级做a爰片毛片免费69 | 夜精品a片一区二区三区无码白浆 | 亚洲国产精品成人久久蜜臀 | 奇米影视7777久久精品 | 日本熟妇大屁股人妻 | 丝袜人妻一区二区三区 | 久久国产劲爆∧v内射 | 国产农村乱对白刺激视频 | 丝袜足控一区二区三区 | 国内老熟妇对白xxxxhd | 麻豆md0077饥渴少妇 | 国产尤物精品视频 | 97无码免费人妻超级碰碰夜夜 | 久久精品中文字幕一区 | 亚洲欧美色中文字幕在线 | 精品无码国产一区二区三区av | 一个人免费观看的www视频 | 蜜桃av蜜臀av色欲av麻 999久久久国产精品消防器材 | 国产熟女一区二区三区四区五区 | 激情爆乳一区二区三区 | 久久人人爽人人人人片 | 国产9 9在线 | 中文 | 国产激情综合五月久久 | 婷婷色婷婷开心五月四房播播 | 成 人影片 免费观看 | 欧美熟妇另类久久久久久不卡 | 天天摸天天碰天天添 | 一本大道久久东京热无码av | 亚洲中文字幕无码一久久区 | 扒开双腿疯狂进出爽爽爽视频 | 精品国产精品久久一区免费式 | 精品久久久无码人妻字幂 | 成人片黄网站色大片免费观看 | 欧美成人免费全部网站 | 毛片内射-百度 | 国产舌乚八伦偷品w中 | 日韩亚洲欧美精品综合 | 国产欧美亚洲精品a | v一区无码内射国产 | 老熟女乱子伦 | 久久久精品欧美一区二区免费 | 成在人线av无码免费 | 无码人中文字幕 | 97色伦图片97综合影院 | 欧美乱妇无乱码大黄a片 | 日本www一道久久久免费榴莲 | 国产午夜无码视频在线观看 | 国产精品99爱免费视频 | 国产激情无码一区二区app | 亚洲日韩av一区二区三区四区 | 亚洲日韩av一区二区三区四区 | 国内精品久久久久久中文字幕 | 精品国产一区二区三区四区 | 国产精品久久久久9999小说 | 国产深夜福利视频在线 | 国产亚洲精品精品国产亚洲综合 | 鲁大师影院在线观看 | 亚洲精品国产精品乱码不卡 | 中文字幕日产无线码一区 | 欧美阿v高清资源不卡在线播放 | 熟女体下毛毛黑森林 | 亚洲精品中文字幕 | 欧美国产亚洲日韩在线二区 | 欧美三级a做爰在线观看 | 极品尤物被啪到呻吟喷水 | 亚洲天堂2017无码中文 | 日本护士毛茸茸高潮 | 国产内射老熟女aaaa | 99在线 | 亚洲 | 亚洲a无码综合a国产av中文 | 装睡被陌生人摸出水好爽 | 狠狠综合久久久久综合网 | 亚洲国产精华液网站w | 久久久中文字幕日本无吗 | 99久久精品国产一区二区蜜芽 | 日本va欧美va欧美va精品 | 精品国产麻豆免费人成网站 | 天天躁夜夜躁狠狠是什么心态 | 亚洲狠狠色丁香婷婷综合 | 亚洲成在人网站无码天堂 | 乱码午夜-极国产极内射 | 波多野结衣 黑人 | 在线播放亚洲第一字幕 | 国产av一区二区三区最新精品 | 大肉大捧一进一出好爽视频 | 麻豆国产人妻欲求不满谁演的 | 无码中文字幕色专区 | 亚洲欧美日韩国产精品一区二区 | 人妻少妇被猛烈进入中文字幕 | 伊人久久大香线焦av综合影院 | 亚洲日韩一区二区 | 国产偷抇久久精品a片69 | 亚洲天堂2017无码中文 | 精品无码一区二区三区的天堂 | 国产精品无码一区二区桃花视频 | 一区二区三区乱码在线 | 欧洲 | 国产人妖乱国产精品人妖 | 少妇无码一区二区二三区 | 一本久久a久久精品亚洲 | 永久免费精品精品永久-夜色 | 国产亚洲美女精品久久久2020 | 亚洲欧美日韩综合久久久 | 久久久精品456亚洲影院 | 亚洲综合另类小说色区 | 久久亚洲精品中文字幕无男同 | 强开小婷嫩苞又嫩又紧视频 | 牲欲强的熟妇农村老妇女 | 久久综合久久自在自线精品自 | 欧美精品无码一区二区三区 | 99久久精品无码一区二区毛片 | 伊在人天堂亚洲香蕉精品区 | 成人亚洲精品久久久久 | 内射后入在线观看一区 | 色婷婷av一区二区三区之红樱桃 | 日本乱人伦片中文三区 | 99久久久国产精品无码免费 | 亚洲区小说区激情区图片区 | 国产亚洲视频中文字幕97精品 | 亚洲无人区一区二区三区 | 无套内射视频囯产 | 国产两女互慰高潮视频在线观看 | 日本欧美一区二区三区乱码 | 欧美国产日韩亚洲中文 | 日韩少妇白浆无码系列 | 中文字幕色婷婷在线视频 | 成人精品一区二区三区中文字幕 | 激情内射日本一区二区三区 | 亚洲区小说区激情区图片区 | 亚洲欧洲无卡二区视頻 | 国产精品人人妻人人爽 | 国产两女互慰高潮视频在线观看 | 曰韩无码二三区中文字幕 | 国产人妻大战黑人第1集 | 小泽玛莉亚一区二区视频在线 | 亚洲熟妇自偷自拍另类 | 日韩欧美中文字幕公布 | 国产精品亚洲а∨无码播放麻豆 | 亚洲精品成人av在线 | 久久精品无码一区二区三区 | 四十如虎的丰满熟妇啪啪 | 2019午夜福利不卡片在线 | 熟女少妇在线视频播放 | 鲁鲁鲁爽爽爽在线视频观看 | 亚洲成色www久久网站 | www成人国产高清内射 | 一本精品99久久精品77 | 国产精品亚洲а∨无码播放麻豆 | 久久亚洲中文字幕精品一区 | 性色欲网站人妻丰满中文久久不卡 | 一本久道高清无码视频 | 亚洲の无码国产の无码步美 | 日本乱人伦片中文三区 | 久久亚洲国产成人精品性色 | 国内少妇偷人精品视频免费 | 乱人伦人妻中文字幕无码 | 日韩无套无码精品 | 中文字幕乱码亚洲无线三区 | 人妻互换免费中文字幕 | 亚洲色大成网站www | 东北女人啪啪对白 | 丰满少妇女裸体bbw | 久久国内精品自在自线 | 永久免费观看美女裸体的网站 | 国产内射老熟女aaaa | 国产一区二区三区四区五区加勒比 | 亚洲国产成人a精品不卡在线 | 欧美xxxx黑人又粗又长 | 欧美日本精品一区二区三区 | 人人妻人人澡人人爽欧美一区九九 | 在线观看免费人成视频 | 人人妻人人澡人人爽欧美精品 | 六月丁香婷婷色狠狠久久 | 欧美日韩人成综合在线播放 | 少妇无码一区二区二三区 | 97久久国产亚洲精品超碰热 | 精品亚洲成av人在线观看 | 欧美精品一区二区精品久久 | 成人免费无码大片a毛片 | 国产小呦泬泬99精品 | 国产性生交xxxxx无码 | 国产精品多人p群无码 | 夫妻免费无码v看片 | 国产成人av免费观看 | 欧美精品一区二区精品久久 | 亚洲精品一区国产 | 亚洲伊人久久精品影院 | 久久人妻内射无码一区三区 | 欧美老妇交乱视频在线观看 | 午夜精品久久久久久久 | 大乳丰满人妻中文字幕日本 | 亚洲欧洲日本综合aⅴ在线 | 久久99热只有频精品8 | 国内精品一区二区三区不卡 | 亚洲a无码综合a国产av中文 | 精品无码国产一区二区三区av | а天堂中文在线官网 | 精品国产一区av天美传媒 | 老司机亚洲精品影院无码 | 欧美freesex黑人又粗又大 | 特黄特色大片免费播放器图片 | 亚洲精品www久久久 | 内射爽无广熟女亚洲 | 国产欧美亚洲精品a | 色诱久久久久综合网ywww | 香蕉久久久久久av成人 | 四虎4hu永久免费 | 久久久久亚洲精品男人的天堂 | 日本一卡2卡3卡四卡精品网站 | 黄网在线观看免费网站 | 国产成人无码a区在线观看视频app | 少妇一晚三次一区二区三区 | 十八禁真人啪啪免费网站 | 亚洲乱码国产乱码精品精 | 精品久久久无码中文字幕 | 久久亚洲a片com人成 | 免费乱码人妻系列无码专区 | 牲欲强的熟妇农村老妇女视频 | 丰满少妇熟乱xxxxx视频 | 欧美自拍另类欧美综合图片区 | 国产真实伦对白全集 | 自拍偷自拍亚洲精品被多人伦好爽 | 欧美35页视频在线观看 | 亚洲中文字幕在线无码一区二区 | 国产精品无码成人午夜电影 | 久久精品国产精品国产精品污 | 欧美国产日韩久久mv | 成人动漫在线观看 | 又大又紧又粉嫩18p少妇 | 蜜桃臀无码内射一区二区三区 | а√天堂www在线天堂小说 | 免费观看激色视频网站 | 无码播放一区二区三区 | 三上悠亚人妻中文字幕在线 | 2019nv天堂香蕉在线观看 | 性史性农村dvd毛片 | 丰满人妻一区二区三区免费视频 | 亚洲男人av香蕉爽爽爽爽 | 亚洲gv猛男gv无码男同 | 鲁鲁鲁爽爽爽在线视频观看 | 久久久精品456亚洲影院 | 亚洲精品久久久久avwww潮水 | 亚洲精品中文字幕久久久久 | 成 人 网 站国产免费观看 | 装睡被陌生人摸出水好爽 | 日本在线高清不卡免费播放 | 亚洲人成人无码网www国产 | 色五月五月丁香亚洲综合网 | 欧美人与善在线com | 国产无遮挡又黄又爽又色 | 欧美性猛交xxxx富婆 | 色婷婷欧美在线播放内射 | 国产精品美女久久久 | 亚洲精品成a人在线观看 | 5858s亚洲色大成网站www | 网友自拍区视频精品 | 亚洲午夜福利在线观看 | 婷婷五月综合激情中文字幕 | 亚洲精品成人福利网站 | 成人免费视频视频在线观看 免费 | 国产亚洲欧美在线专区 | 国产特级毛片aaaaaaa高清 | 亚洲男人av香蕉爽爽爽爽 | 蜜桃臀无码内射一区二区三区 | 亚洲七七久久桃花影院 | 国产亚洲视频中文字幕97精品 | 亚洲人成影院在线无码按摩店 | 国产97色在线 | 免 | 性色欲网站人妻丰满中文久久不卡 | 国产精品亚洲lv粉色 | 欧美 亚洲 国产 另类 | 欧美人与物videos另类 | 一本无码人妻在中文字幕免费 | 香蕉久久久久久av成人 | 欧美日韩一区二区免费视频 | 亚洲欧洲日本无在线码 | 国产精品二区一区二区aⅴ污介绍 | 国产精品高潮呻吟av久久 | 成人精品天堂一区二区三区 | 国产精品久久久一区二区三区 | 人妻与老人中文字幕 | 亚洲成色在线综合网站 | aⅴ亚洲 日韩 色 图网站 播放 | 亚洲日本一区二区三区在线 | 色综合久久中文娱乐网 | 麻豆国产丝袜白领秘书在线观看 | 性欧美大战久久久久久久 | 两性色午夜免费视频 | 亚洲精品中文字幕 | 樱花草在线播放免费中文 | 婷婷色婷婷开心五月四房播播 | 国产综合色产在线精品 | 丰满岳乱妇在线观看中字无码 | 国产亚洲美女精品久久久2020 | 久久久婷婷五月亚洲97号色 | 未满成年国产在线观看 | 国内综合精品午夜久久资源 | 亚洲精品无码国产 | 麻豆蜜桃av蜜臀av色欲av | 国产网红无码精品视频 | 老熟妇仑乱视频一区二区 | 久久久久久久女国产乱让韩 | 日本一区二区三区免费高清 | 2020久久香蕉国产线看观看 | 久久婷婷五月综合色国产香蕉 | 精品国产aⅴ无码一区二区 | 免费观看又污又黄的网站 | 在教室伦流澡到高潮hnp视频 | 国产三级精品三级男人的天堂 | 国产精华av午夜在线观看 | 国产精品多人p群无码 | 国产精品二区一区二区aⅴ污介绍 | 色综合久久网 | 在线观看欧美一区二区三区 | 成人毛片一区二区 | 六十路熟妇乱子伦 | 成年女人永久免费看片 | 岛国片人妻三上悠亚 | 青青青手机频在线观看 | 国产超碰人人爽人人做人人添 | 无码人妻精品一区二区三区不卡 | 国产国语老龄妇女a片 | 国产成人精品视频ⅴa片软件竹菊 | 精品一区二区三区无码免费视频 | 亚洲中文字幕久久无码 | 久久久久久a亚洲欧洲av冫 | 一二三四在线观看免费视频 | 久久97精品久久久久久久不卡 | 成人亚洲精品久久久久软件 | 亚洲狠狠婷婷综合久久 | 亚洲aⅴ无码成人网站国产app | 少妇高潮一区二区三区99 | 黑人玩弄人妻中文在线 | 97久久超碰中文字幕 | 日日摸日日碰夜夜爽av | 亚洲の无码国产の无码影院 | 亚洲一区二区三区香蕉 | a国产一区二区免费入口 | 欧美性色19p | 人妻少妇精品视频专区 | 国产又爽又黄又刺激的视频 | 97精品国产97久久久久久免费 | 久久精品中文字幕一区 | 性色av无码免费一区二区三区 | 狠狠cao日日穞夜夜穞av | 丝袜人妻一区二区三区 | 狠狠躁日日躁夜夜躁2020 | 天天摸天天透天天添 | 国产美女极度色诱视频www | 国产女主播喷水视频在线观看 | 欧美 日韩 人妻 高清 中文 | 午夜精品一区二区三区的区别 | 欧美亚洲国产一区二区三区 | 2020久久超碰国产精品最新 | 国产精品第一国产精品 | 久久精品人人做人人综合 | 夜夜影院未满十八勿进 | 亚洲精品国产品国语在线观看 | 成人aaa片一区国产精品 | 日韩av无码一区二区三区不卡 | 欧美35页视频在线观看 | 无码中文字幕色专区 | 亚洲欧洲日本综合aⅴ在线 | 人妻熟女一区 | 国产成人综合在线女婷五月99播放 | 国内综合精品午夜久久资源 | 日日橹狠狠爱欧美视频 | 久久久久se色偷偷亚洲精品av | 中文字幕精品av一区二区五区 | 久久午夜无码鲁丝片秋霞 | 九九热爱视频精品 | 亚洲色偷偷偷综合网 | 欧美黑人巨大xxxxx | 欧美freesex黑人又粗又大 | 300部国产真实乱 | 红桃av一区二区三区在线无码av | 丰满少妇熟乱xxxxx视频 | 伦伦影院午夜理论片 | 玩弄人妻少妇500系列视频 | 少妇无套内谢久久久久 | 超碰97人人射妻 | 天天av天天av天天透 | 18无码粉嫩小泬无套在线观看 | 性生交大片免费看女人按摩摩 | 黑人玩弄人妻中文在线 | 精品水蜜桃久久久久久久 | 色偷偷av老熟女 久久精品人妻少妇一区二区三区 | 国产av无码专区亚洲awww | 强开小婷嫩苞又嫩又紧视频 | 日本欧美一区二区三区乱码 | 免费看少妇作爱视频 | 国产亚洲人成a在线v网站 | 又湿又紧又大又爽a视频国产 | 国产精品久久精品三级 | av无码久久久久不卡免费网站 | 日本一卡2卡3卡四卡精品网站 | 亚洲成a人片在线观看无码3d | 在线精品国产一区二区三区 | 久久精品国产日本波多野结衣 | 国产人妻人伦精品 | aⅴ亚洲 日韩 色 图网站 播放 | 亚洲国产精品毛片av不卡在线 | 成在人线av无码免费 | 六月丁香婷婷色狠狠久久 | 亚洲熟妇色xxxxx欧美老妇y | 亚洲精品一区二区三区在线观看 | 国内精品久久毛片一区二区 | 欧美猛少妇色xxxxx | 精品熟女少妇av免费观看 | 亚洲精品久久久久中文第一幕 | 99精品无人区乱码1区2区3区 | 台湾无码一区二区 | 亚洲成a人片在线观看无码3d | 亚洲日本va午夜在线电影 | 日本www一道久久久免费榴莲 | 免费人成在线观看网站 | 久久无码专区国产精品s | 亚洲精品久久久久久久久久久 | 免费无码午夜福利片69 | 国产激情综合五月久久 | 亚洲精品国产品国语在线观看 | 免费观看黄网站 | 国产亚洲tv在线观看 | 国产无套内射久久久国产 | 亚洲成a人片在线观看日本 | 成人免费视频视频在线观看 免费 | 色综合久久久无码网中文 | 国产肉丝袜在线观看 | 久久伊人色av天堂九九小黄鸭 | 亚洲国产精品毛片av不卡在线 | 亚洲人交乣女bbw | 久久久精品欧美一区二区免费 | 一本大道伊人av久久综合 | 又粗又大又硬毛片免费看 | 亚洲s色大片在线观看 | 精品国产精品久久一区免费式 | 国产成人无码a区在线观看视频app | 2020久久超碰国产精品最新 | 亚洲国产精品久久久天堂 | 日韩成人一区二区三区在线观看 | 欧美喷潮久久久xxxxx | 粉嫩少妇内射浓精videos | 亚洲一区二区三区偷拍女厕 | 在线视频网站www色 | 麻豆蜜桃av蜜臀av色欲av | 中国女人内谢69xxxx | 国产日产欧产精品精品app | 中文字幕人成乱码熟女app | 久久综合九色综合欧美狠狠 | 欧美人与动性行为视频 | 亚洲一区二区三区国产精华液 | 丰满少妇熟乱xxxxx视频 | 男女爱爱好爽视频免费看 | 日本精品人妻无码免费大全 | 伊人久久大香线蕉午夜 | 亚洲熟妇色xxxxx欧美老妇 | 少妇高潮喷潮久久久影院 | 欧美黑人巨大xxxxx | 日韩人妻无码中文字幕视频 | 国产9 9在线 | 中文 | 欧美老熟妇乱xxxxx | 亚洲精品午夜国产va久久成人 | 偷窥日本少妇撒尿chinese | 香港三级日本三级妇三级 | 好爽又高潮了毛片免费下载 | 麻豆精产国品 | 亚洲熟熟妇xxxx | 久久视频在线观看精品 | 日韩精品乱码av一区二区 | 精品久久综合1区2区3区激情 | 六十路熟妇乱子伦 | 国产高清不卡无码视频 | 女高中生第一次破苞av | 午夜嘿嘿嘿影院 | 亚洲国产精品美女久久久久 | 国产精品美女久久久网av | 国产精品99爱免费视频 | 一二三四在线观看免费视频 | 欧美亚洲日韩国产人成在线播放 | 两性色午夜视频免费播放 | 色一情一乱一伦 | 亚洲一区二区三区偷拍女厕 | 亚洲色欲色欲欲www在线 | 国产免费久久久久久无码 | 99久久人妻精品免费二区 | 婷婷色婷婷开心五月四房播播 | 久久zyz资源站无码中文动漫 | 2019nv天堂香蕉在线观看 | 久久久精品人妻久久影视 | 日韩精品成人一区二区三区 | 人人澡人摸人人添 | 欧美 丝袜 自拍 制服 另类 | 麻豆精产国品 | 老子影院午夜精品无码 | 少妇厨房愉情理9仑片视频 | 欧美日韩色另类综合 | 日韩无套无码精品 | 亚洲日韩中文字幕在线播放 | 又色又爽又黄的美女裸体网站 | 精品人妻中文字幕有码在线 | 日本va欧美va欧美va精品 | 久久久久亚洲精品男人的天堂 | 免费播放一区二区三区 | 国产成人无码a区在线观看视频app | 麻豆国产人妻欲求不满 | 久久久久人妻一区精品色欧美 | 麻豆精品国产精华精华液好用吗 | 精品乱子伦一区二区三区 | 无码人妻av免费一区二区三区 | 色欲综合久久中文字幕网 | 色欲综合久久中文字幕网 | 欧美国产日韩亚洲中文 | 久久精品国产日本波多野结衣 | 国产精品18久久久久久麻辣 | 国产黄在线观看免费观看不卡 | 免费播放一区二区三区 | 曰韩少妇内射免费播放 | 少妇人妻大乳在线视频 | 国产97在线 | 亚洲 | 少妇久久久久久人妻无码 | 久久国产自偷自偷免费一区调 | 内射老妇bbwx0c0ck | 老子影院午夜精品无码 | 四虎影视成人永久免费观看视频 | 色婷婷久久一区二区三区麻豆 | 无码任你躁久久久久久久 | 欧美日韩视频无码一区二区三 | 伊人色综合久久天天小片 | 97久久精品无码一区二区 | 色欲综合久久中文字幕网 | 精品亚洲韩国一区二区三区 | 色妞www精品免费视频 | 亚洲a无码综合a国产av中文 | 成人亚洲精品久久久久 | 少妇被粗大的猛进出69影院 | 亚洲人成网站色7799 | a国产一区二区免费入口 | 亚洲欧洲中文日韩av乱码 | 国产极品视觉盛宴 | 性做久久久久久久久 | 久久综合狠狠综合久久综合88 | 亚洲第一网站男人都懂 | 成人无码视频在线观看网站 | 又黄又爽又色的视频 | 国产精品亚洲lv粉色 | 无码纯肉视频在线观看 | 亚洲精品一区二区三区婷婷月 | 又大又硬又爽免费视频 | 国产成人无码区免费内射一片色欲 | 女高中生第一次破苞av | 无码一区二区三区在线观看 | 亚洲高清偷拍一区二区三区 | 精品国精品国产自在久国产87 | 亚洲区欧美区综合区自拍区 | 久久综合激激的五月天 | 国产成人一区二区三区在线观看 | 一个人看的视频www在线 | 国产精品毛片一区二区 | 日日摸天天摸爽爽狠狠97 | 久热国产vs视频在线观看 | 给我免费的视频在线观看 | 狠狠噜狠狠狠狠丁香五月 | 好男人www社区 | 无码人中文字幕 | 日本熟妇大屁股人妻 | 亚洲另类伦春色综合小说 | 国产精品高潮呻吟av久久 | 性开放的女人aaa片 | 国产农村妇女高潮大叫 | 国产成人av免费观看 | 成人精品视频一区二区 | 国产亚洲精品久久久久久久久动漫 | 国产特级毛片aaaaaaa高清 | 亚洲另类伦春色综合小说 | 呦交小u女精品视频 | 精品国偷自产在线视频 | 欧美怡红院免费全部视频 | 国产av无码专区亚洲awww | 久久人人爽人人爽人人片av高清 | 国产超级va在线观看视频 | 国产9 9在线 | 中文 | 麻豆成人精品国产免费 | 3d动漫精品啪啪一区二区中 | 亚洲人亚洲人成电影网站色 | 国产精品第一国产精品 | 日本一区二区三区免费播放 | 天天拍夜夜添久久精品 | 人妻少妇精品视频专区 | 在线播放亚洲第一字幕 | 国产精品毛多多水多 | 18禁止看的免费污网站 | 中国女人内谢69xxxx | 中文字幕av伊人av无码av | 性啪啪chinese东北女人 | 99久久精品午夜一区二区 | 暴力强奷在线播放无码 | 久久久国产精品无码免费专区 | 欧美丰满熟妇xxxx | 狠狠色丁香久久婷婷综合五月 | 色五月丁香五月综合五月 | 亚洲gv猛男gv无码男同 | 一二三四在线观看免费视频 | 麻豆国产97在线 | 欧洲 | 香港三级日本三级妇三级 | 亚洲精品www久久久 | 帮老师解开蕾丝奶罩吸乳网站 | 波多野结衣av一区二区全免费观看 | 成人无码精品一区二区三区 | 美女张开腿让人桶 | 久在线观看福利视频 | 97人妻精品一区二区三区 | 又湿又紧又大又爽a视频国产 | 国产99久久精品一区二区 | 亚洲日韩一区二区三区 | 国产精品资源一区二区 | 久久99精品国产.久久久久 | 亚洲中文字幕无码中文字在线 | 亚洲精品鲁一鲁一区二区三区 | 亚洲综合在线一区二区三区 | 无码一区二区三区在线 | 久久午夜无码鲁丝片秋霞 | 一个人免费观看的www视频 | 午夜丰满少妇性开放视频 | 亚洲日本在线电影 | 成人一区二区免费视频 | 一二三四在线观看免费视频 | 久久无码专区国产精品s | 欧美乱妇无乱码大黄a片 | 在线天堂新版最新版在线8 | 少妇高潮喷潮久久久影院 | 亚洲伊人久久精品影院 | 蜜桃av抽搐高潮一区二区 | 爱做久久久久久 | 国产黄在线观看免费观看不卡 | 亚洲经典千人经典日产 | 人妻与老人中文字幕 | 1000部啪啪未满十八勿入下载 | 国产在线无码精品电影网 | 2019nv天堂香蕉在线观看 | 一区二区传媒有限公司 | 国产精品久久久一区二区三区 | 国产一区二区不卡老阿姨 | 六十路熟妇乱子伦 | 久久99国产综合精品 | 丰满护士巨好爽好大乳 | av在线亚洲欧洲日产一区二区 | 欧美精品在线观看 | 久久五月精品中文字幕 | 国产精品无码永久免费888 | 久久人人爽人人爽人人片ⅴ | 青草视频在线播放 | 秋霞成人午夜鲁丝一区二区三区 | 少妇高潮一区二区三区99 | 中文字幕人成乱码熟女app | 久久久国产精品无码免费专区 | 高中生自慰www网站 | 国产精品亚洲а∨无码播放麻豆 | 国产另类ts人妖一区二区 | 亚洲一区二区三区 | 国产成人精品久久亚洲高清不卡 | 亚洲精品中文字幕乱码 | 日产精品99久久久久久 | 亚洲乱码中文字幕在线 | 狠狠躁日日躁夜夜躁2020 | 亚洲国产日韩a在线播放 | 俺去俺来也www色官网 | 亚洲日韩一区二区三区 | 精品欧洲av无码一区二区三区 | 无码人妻精品一区二区三区不卡 | 免费男性肉肉影院 | 亚洲欧洲日本无在线码 | 熟女少妇在线视频播放 | 人人妻人人澡人人爽人人精品浪潮 | 午夜不卡av免费 一本久久a久久精品vr综合 | 久久久久人妻一区精品色欧美 | 又大又硬又爽免费视频 | 久久人妻内射无码一区三区 | 无遮挡国产高潮视频免费观看 | 国产精品无码久久av | 丰满少妇熟乱xxxxx视频 | 亚洲综合在线一区二区三区 | 亚洲a无码综合a国产av中文 | 曰韩无码二三区中文字幕 | 成人亚洲精品久久久久软件 | 疯狂三人交性欧美 | 亚洲性无码av中文字幕 | 欧美freesex黑人又粗又大 | 欧美高清在线精品一区 | 亚洲天堂2017无码中文 | 亚洲一区二区三区含羞草 | 国产人妻人伦精品1国产丝袜 | 国产色在线 | 国产 | 亚洲а∨天堂久久精品2021 | 亚洲精品国产精品乱码视色 | а√资源新版在线天堂 | 亚洲人交乣女bbw | 精品久久久无码人妻字幂 | 精品 日韩 国产 欧美 视频 | 55夜色66夜色国产精品视频 | 欧美色就是色 | 国产精华av午夜在线观看 | 在线观看欧美一区二区三区 | 亚洲 欧美 激情 小说 另类 | 日产精品高潮呻吟av久久 | 在线观看欧美一区二区三区 | 高潮毛片无遮挡高清免费 | 欧美喷潮久久久xxxxx | 无码国产色欲xxxxx视频 | 久久久精品欧美一区二区免费 | 国产精品久久久久久亚洲影视内衣 | 国产电影无码午夜在线播放 | 亚洲国精产品一二二线 | 性欧美videos高清精品 | 亚洲精品午夜无码电影网 | 好男人社区资源 | 无码av岛国片在线播放 | 久久综合网欧美色妞网 | 亚洲一区二区三区在线观看网站 | 成人精品一区二区三区中文字幕 | 免费无码av一区二区 | 天天av天天av天天透 | 亚洲第一无码av无码专区 | 在线成人www免费观看视频 | 婷婷丁香五月天综合东京热 | 亚洲国产欧美在线成人 | 成在人线av无码免观看麻豆 | 日本一卡2卡3卡4卡无卡免费网站 国产一区二区三区影院 | 思思久久99热只有频精品66 | 天天摸天天透天天添 | 国精品人妻无码一区二区三区蜜柚 | 国产精品对白交换视频 | 亚洲 另类 在线 欧美 制服 | 免费国产成人高清在线观看网站 | 牛和人交xxxx欧美 | 国产又粗又硬又大爽黄老大爷视 | 中文无码成人免费视频在线观看 | 亚洲日韩一区二区 | 欧美一区二区三区视频在线观看 | 18无码粉嫩小泬无套在线观看 | 欧美日韩色另类综合 | 中文字幕日产无线码一区 | 激情国产av做激情国产爱 | 久久天天躁夜夜躁狠狠 | 日本一区二区三区免费播放 | 丰满妇女强制高潮18xxxx | 亚拍精品一区二区三区探花 | 曰本女人与公拘交酡免费视频 | 天堂а√在线地址中文在线 | 扒开双腿吃奶呻吟做受视频 | 3d动漫精品啪啪一区二区中 | 色婷婷欧美在线播放内射 | 国产特级毛片aaaaaa高潮流水 | 麻豆md0077饥渴少妇 | 亚洲精品综合五月久久小说 | 欧美性猛交xxxx富婆 | 人人妻人人澡人人爽欧美一区九九 | 中文精品久久久久人妻不卡 | 爱做久久久久久 | 人妻夜夜爽天天爽三区 | 在线亚洲高清揄拍自拍一品区 | 精品一区二区三区无码免费视频 | 午夜嘿嘿嘿影院 | 成人性做爰aaa片免费看 | 久精品国产欧美亚洲色aⅴ大片 | 最新国产麻豆aⅴ精品无码 | 午夜无码人妻av大片色欲 | 人妻中文无码久热丝袜 | 性色欲网站人妻丰满中文久久不卡 | 精品久久久无码人妻字幂 | 在线观看国产午夜福利片 | 国产特级毛片aaaaaa高潮流水 | 丁香花在线影院观看在线播放 | 无人区乱码一区二区三区 | 成人无码视频免费播放 | 国产亚洲欧美日韩亚洲中文色 | 欧美丰满熟妇xxxx性ppx人交 | 97夜夜澡人人爽人人喊中国片 | 国精品人妻无码一区二区三区蜜柚 | 奇米影视7777久久精品人人爽 | 99久久久无码国产aaa精品 | 377p欧洲日本亚洲大胆 | 狠狠色色综合网站 | 国产成人综合色在线观看网站 | 久久久成人毛片无码 | 久久精品中文字幕一区 | 色欲人妻aaaaaaa无码 | 国内少妇偷人精品视频 | 国产精品久久久一区二区三区 | 国产美女极度色诱视频www | 成人亚洲精品久久久久 | 精品亚洲韩国一区二区三区 | 国产高清不卡无码视频 | 国产9 9在线 | 中文 | aⅴ亚洲 日韩 色 图网站 播放 | 特黄特色大片免费播放器图片 | 无码人妻丰满熟妇区五十路百度 | 亚洲中文字幕在线无码一区二区 | 欧美 丝袜 自拍 制服 另类 | 国产精品igao视频网 | 午夜精品久久久久久久久 | 无码毛片视频一区二区本码 | 国产精品自产拍在线观看 | 国产精品多人p群无码 | 国产九九九九九九九a片 | 国产肉丝袜在线观看 | 97精品国产97久久久久久免费 | 日本www一道久久久免费榴莲 | 亚洲欧美色中文字幕在线 | 国产国语老龄妇女a片 | 亚洲自偷精品视频自拍 | 国产真实乱对白精彩久久 | 青青青手机频在线观看 | 国产人妻人伦精品 | 亚洲爆乳大丰满无码专区 | 国产成人久久精品流白浆 | 日本www一道久久久免费榴莲 | www国产亚洲精品久久网站 | 国产猛烈高潮尖叫视频免费 | 妺妺窝人体色www在线小说 | 人妻无码久久精品人妻 | 97资源共享在线视频 | 亚洲成a人片在线观看无码3d | 欧美zoozzooz性欧美 | 性欧美牲交xxxxx视频 | 欧美freesex黑人又粗又大 | 亚洲中文字幕无码中文字在线 | 亚洲欧美国产精品专区久久 | 国产激情无码一区二区app | 又黄又爽又色的视频 | 人人爽人人爽人人片av亚洲 | 免费观看又污又黄的网站 | 亚洲国产精品久久人人爱 | 国产两女互慰高潮视频在线观看 | 熟女体下毛毛黑森林 | 婷婷丁香五月天综合东京热 | 一本大道伊人av久久综合 | 高中生自慰www网站 | 午夜丰满少妇性开放视频 | 欧美老妇交乱视频在线观看 | 少妇人妻大乳在线视频 | 精品一区二区不卡无码av | 亚洲日韩一区二区三区 | 免费无码肉片在线观看 | 玩弄中年熟妇正在播放 | 午夜精品久久久内射近拍高清 | 波多野结衣一区二区三区av免费 | 国产一区二区不卡老阿姨 | 亚洲色成人中文字幕网站 | 国产成人人人97超碰超爽8 | 国内少妇偷人精品视频 | 久久久久se色偷偷亚洲精品av | 中文字幕人妻无码一区二区三区 | 扒开双腿吃奶呻吟做受视频 | 东京无码熟妇人妻av在线网址 | 娇妻被黑人粗大高潮白浆 | 亚洲精品一区二区三区婷婷月 | 精品欧美一区二区三区久久久 | 无码午夜成人1000部免费视频 | 老熟妇仑乱视频一区二区 | 狠狠色噜噜狠狠狠7777奇米 | 伊人久久大香线蕉av一区二区 | 精品无码国产一区二区三区av | 丰满少妇女裸体bbw | 久久久精品国产sm最大网站 | 日本一本二本三区免费 | 国产片av国语在线观看 | 亚洲a无码综合a国产av中文 | 国产色精品久久人妻 | 亚洲色欲色欲天天天www | 亚洲爆乳精品无码一区二区三区 | 性色欲情网站iwww九文堂 | 乱人伦人妻中文字幕无码久久网 | 久久99精品国产麻豆 | 天堂一区人妻无码 | www成人国产高清内射 | 日本护士xxxxhd少妇 | 男女猛烈xx00免费视频试看 | 国产农村乱对白刺激视频 | 午夜精品久久久久久久久 | 国产性猛交╳xxx乱大交 国产精品久久久久久无码 欧洲欧美人成视频在线 | 亚洲国产日韩a在线播放 | 国产高潮视频在线观看 | 久久精品无码一区二区三区 | 人妻与老人中文字幕 | 国产精品理论片在线观看 | 国产真实伦对白全集 | 国产免费观看黄av片 | 成年女人永久免费看片 | 欧美性生交活xxxxxdddd | 国产麻豆精品一区二区三区v视界 | 久久精品无码一区二区三区 | 熟女体下毛毛黑森林 | 亚洲一区二区三区偷拍女厕 | 国产卡一卡二卡三 | 国产农村乱对白刺激视频 | 日本爽爽爽爽爽爽在线观看免 | 国产电影无码午夜在线播放 | 日韩人妻无码中文字幕视频 | 扒开双腿吃奶呻吟做受视频 | 2020久久超碰国产精品最新 | 久久久精品456亚洲影院 | 亚洲成色www久久网站 | 免费男性肉肉影院 | 丰腴饱满的极品熟妇 | 国产精品99爱免费视频 | 日本精品人妻无码77777 天堂一区人妻无码 | 色一情一乱一伦 | 中文字幕乱码亚洲无线三区 | 激情爆乳一区二区三区 | 噜噜噜亚洲色成人网站 | 久久精品人人做人人综合试看 | 日产精品高潮呻吟av久久 | 日本乱偷人妻中文字幕 | 欧美日韩视频无码一区二区三 | 精品国产乱码久久久久乱码 | 老子影院午夜伦不卡 | 久久综合香蕉国产蜜臀av | 人妻天天爽夜夜爽一区二区 | 日韩精品久久久肉伦网站 | 97夜夜澡人人双人人人喊 | 久久久国产一区二区三区 | 日韩精品无码一区二区中文字幕 | 国产一区二区不卡老阿姨 | 国产内射爽爽大片视频社区在线 | 麻花豆传媒剧国产免费mv在线 | 中文字幕亚洲情99在线 | 亚洲七七久久桃花影院 | 人人爽人人澡人人人妻 | 美女扒开屁股让男人桶 | 亚洲欧美精品aaaaaa片 | 欧美激情综合亚洲一二区 | 狠狠噜狠狠狠狠丁香五月 | 99久久99久久免费精品蜜桃 | 性欧美大战久久久久久久 | 国产精品高潮呻吟av久久 | 欧美黑人巨大xxxxx | 精品国产一区二区三区四区在线看 | 亚洲中文字幕久久无码 | 亚洲欧美日韩综合久久久 | 人妻少妇被猛烈进入中文字幕 | 搡女人真爽免费视频大全 | 熟女俱乐部五十路六十路av | 精品熟女少妇av免费观看 | 欧美freesex黑人又粗又大 | 国产亚洲人成在线播放 | 一本无码人妻在中文字幕免费 | 久久天天躁夜夜躁狠狠 | 亚洲国产午夜精品理论片 | 在线亚洲高清揄拍自拍一品区 | 思思久久99热只有频精品66 | 性色av无码免费一区二区三区 | 欧美成人高清在线播放 | 大肉大捧一进一出好爽视频 | 国模大胆一区二区三区 | 一二三四在线观看免费视频 | 在线 国产 欧美 亚洲 天堂 | 欧美精品一区二区精品久久 | 久久aⅴ免费观看 | 精品久久久久久人妻无码中文字幕 | 亚洲区小说区激情区图片区 | 在线播放免费人成毛片乱码 | 人妻少妇精品无码专区二区 | 中文字幕无码乱人伦 | 香港三级日本三级妇三级 | 亚洲 日韩 欧美 成人 在线观看 | 色 综合 欧美 亚洲 国产 | 国产莉萝无码av在线播放 | 国产午夜无码精品免费看 | 性色欲网站人妻丰满中文久久不卡 | 精品久久久久久人妻无码中文字幕 | 国产精品多人p群无码 | 日本护士毛茸茸高潮 | 精品国产一区二区三区四区 | 麻豆av传媒蜜桃天美传媒 | 国产精品-区区久久久狼 | 国产成人一区二区三区别 | 久久97精品久久久久久久不卡 | 天堂一区人妻无码 | 中文字幕av无码一区二区三区电影 | 亚洲一区二区三区香蕉 | 色妞www精品免费视频 | 国产午夜亚洲精品不卡下载 | 国内丰满熟女出轨videos | 精品国产一区av天美传媒 | 午夜理论片yy44880影院 | 国产无av码在线观看 | 夜夜影院未满十八勿进 | 天堂久久天堂av色综合 | 国产综合久久久久鬼色 | 国产av无码专区亚洲awww | 国产乱码精品一品二品 | 一本久久伊人热热精品中文字幕 | 黑森林福利视频导航 | 亚洲а∨天堂久久精品2021 | 国产精品二区一区二区aⅴ污介绍 | 日日鲁鲁鲁夜夜爽爽狠狠 | 欧美变态另类xxxx | 国产69精品久久久久app下载 | 老熟女乱子伦 | 亚洲熟妇色xxxxx亚洲 | 国内精品九九久久久精品 | 中文字幕色婷婷在线视频 | 天海翼激烈高潮到腰振不止 | 正在播放东北夫妻内射 | 熟女少妇在线视频播放 | 国产亚洲精品久久久久久久 | 男人扒开女人内裤强吻桶进去 | 啦啦啦www在线观看免费视频 | 少妇无码一区二区二三区 | 精品成人av一区二区三区 | 国产免费观看黄av片 | 成人欧美一区二区三区 | 久久精品国产99久久6动漫 | 伊人久久大香线蕉av一区二区 | 黑森林福利视频导航 | 男女作爱免费网站 | 俄罗斯老熟妇色xxxx | 国产欧美亚洲精品a | 在线а√天堂中文官网 | 露脸叫床粗话东北少妇 | 亚洲精品成a人在线观看 | 久久久久久a亚洲欧洲av冫 | 999久久久国产精品消防器材 | 奇米影视7777久久精品人人爽 | 双乳奶水饱满少妇呻吟 | 亚洲国产一区二区三区在线观看 | 久久久久久a亚洲欧洲av冫 | 国产精品久久久久久亚洲影视内衣 | 亚洲另类伦春色综合小说 | 亚洲中文无码av永久不收费 | 亚洲人成影院在线无码按摩店 | 国产无遮挡又黄又爽又色 | 又粗又大又硬又长又爽 | 国产精品久久久久久久9999 | 天天综合网天天综合色 | 男女性色大片免费网站 | 欧美freesex黑人又粗又大 | 成人性做爰aaa片免费看不忠 | 亚洲精品午夜国产va久久成人 | 久久亚洲a片com人成 | 无码国内精品人妻少妇 | 国产莉萝无码av在线播放 | 牲欲强的熟妇农村老妇女视频 | 特级做a爰片毛片免费69 | 男人的天堂av网站 | 国产日产欧产精品精品app | 成人女人看片免费视频放人 | 亚洲欧洲日本无在线码 |