Share to: share facebook share twitter share wa share telegram print page

代理自动配置

代理自动配置(英語:Proxy auto-config,简称PAC)是一种网页浏览器技术,用于定义浏览器该如何自动选择适当的代理服务器来访问一个网址。

一个PAC文件包含一个JavaScript的函数“FindProxyForURL(url, host)”,这个函数返回一个包含一个或多个访问规则的字符串。用户代理根据这些规则使用一个特定的代理器或者直接访问,这些规则也有优先级。当使用高优先级的规则无法访问的时候,低优先级的访问规则(如果存在)就提供了备用的访问方式。浏览器在访问网页以前,会首先访问这个PAC文件。PAC文件中的URL可能是手工配置的,也可能是是通过网页的网络代理自动发现协议自动配置的。

相关技术

现代浏览器实现了多种级别的代理设置,用户可以选择最适合他们需要的级别。下面是三种常用的设置:

  • 手动代理配置/全局模式:为所有的URLs规定一个主机名和端口作为代理。大多数浏览器允许用户规定一个域名的列表(例如localhost),访问这个列表里面的域名的时候不通过代理服务器。
  • 代理自动配置(PAC):规定一个指向PAC文件的URL,这个文件中包括一个选择代理服务器的JavaScript程序。这个方法适合复杂设置,例如需要针对不同网址配置不同的代理服务器,或者指定某些网站使用或不使用代理服务器。
  • 网络代理自发现协议:浏览器通过DHCP和DNS来搜索PAC文件。


PAC文件

要使用PAC,应当在一个网页服务器上发布一个PAC文件,并且通过在浏览器的代理链接设置页面输入这个PAC文件的URL或者通过使用网络代理自动发现协议告知用户代理去使用这个文件。

一个PAC文件是一个至少定义了一个JavaScript函数的文本文件。这个函数“FindProxyForURL(url, host)“有2个参数:url是一个对象的URL,host是一个由这个URL所衍生的主机名。按照惯例,这个文件名字一般是proxy.pac. 网络代理自动发现协议标准使用wpad.dat。

虽然现代的大多数客户端无论从HTTP请求返回的MIME类型是什么都能正确处理,但为了完整性和最佳的兼容性,我们应该设置网页服务器将这个文件的MIME类型声明为application/x-ns-proxy-autoconfig或者application/x-javascript-config。(application/x-ns-proxy-autoconfig相对application/x-javascript-config被更多的客户端所支持,因为它是最初被定义在Netscape规范里面的,而后者最近才开始被使用。)

一个非常简单的PAC文件内容

   function FindProxyForURL(url, host) { return "PROXY proxy.example.com:8080; DIRECT"; }

这个函数告知浏览器通过服务器proxy.example.com的8080端口来获取所有的页面。如果这个服务器没有反应,那么浏览器应该不使用代理服务器直接访问WWW. 下面是一个更加复杂一些的例子,展示了在FindProxyForURL函数中如何使用JavaScript函数:

   function FindProxyForURL(url, host) {
      // our local URLs from the domains below example.com don't need a proxy:
      if (shExpMatch(url,"*.example.com/*"))                  {return "DIRECT";}
      if (shExpMatch(url, "*.example.com:*/*"))               {return "DIRECT";}
      
      // URLs within this network are accessed through 
      // port 8080 on fastproxy.example.com:
      if (isInNet(host, "10.0.0.0",  "255.255.248.0"))    {
         return "PROXY fastproxy.example.com:8080";
      }
      
      // All other requests go through port 8080 of proxy.example.com.
      // should that fail to respond, go directly to the WWW:
      return "PROXY proxy.example.com:8080; DIRECT";
   }

局限

PAC文件编码

有些浏览器,例如Internet Explorer只支持系统缺省编码的PAC文件,不支持Unicode编码的PAC文件,例如UTF-8编码的PAC文件。

DnsResolve

函数dnsResolv(及其他类似函数)在执行DNS查询时,如果DNS服务器没有回应,会导致你的浏览器被阻塞很长时间。 Microsoft的IE5.5或更高版本浏览器提供的基于域名的代理自动配置缓存机制限制了PAC标准的灵活性。实际上,你是通过域名来选择代理服务器,而不是通过URL路径。当然,你可以通过修改注册表的方法来关闭代理自动配置的缓存,Royne Pollard描述了这个步骤(详见深入阅读)。

为了兼容Windows中其他使用Internet Explorer PAC设置的组件,例如.NET 2.0框架,推荐在isInNet函数中使用IP地址而不是域名

if (isInNet(host, dnsResolve(sampledomain) , "255.255.248.0") // .NET 2.0 will resolve proxy properly
 
if (isInNet(host, sampledomain, "255.255.248.0") // .NET 2.0 will not resolve proxy properly

当一个PAC规则不可用的时候,当前默认采用的方法是直接连接。

其他的限制与本地的JavaScript有关。

其他功能

有些更高级的PAC文件可以使用负载平衡、故障转移甚至黑白名单等方法减少对于使用的代理服务器的负载。并且可以返回多个代理服务器,例如:

      return "PROXY proxy1.example.com:8080; PROXY proxy2.example.com:8080";

参考资料

de Boyne Pollard, Jonathan. Automatic proxy HTTP server configuration in web browsers. Frequently Given Answers. 2004 [2016-08-12]. (原始内容存档于2012-04-23). 

外部链接

Read other articles:

Non-profit art space in Cape Town, South Africa Montebello Design CentreThe gift shop, clock tower and old stable area of the Montebello Design Centre.Location31 Newlands Ave, Newlands, Cape Town, 7700Coordinates33°58′13″S 18°27′26″E / 33.970139°S 18.457318°E / -33.970139; 18.457318TypeArt, craft and business spaceGenre(s)Art exhibitions, craft centre, community eventsOpened1993; 30 years ago (1993)Websitewww.montebello.co.za Artist Right ...

 

1945 film by Fridrikh Ermler The Turning Point(Великий перелом)Directed byFridrikh ErmlerWritten byBoris ChirskovStarringMikhail Derzhavin, SrPyotr AndriyevskyYuri TolubeyevAndrei AbrikosovCinematographyArkadi KoltsatyProductioncompanyLenfilmRelease date1945Running time108 minutesCountrySoviet UnionLanguageRussian The Turning Point (Russian: Великий перелом, romanized: Velikij perelom) is a 1945 Soviet, Russian-language war film directed by Fridrikh Ermler bas...

 

Dieser Artikel oder nachfolgende Abschnitt ist nicht hinreichend mit Belegen (beispielsweise Einzelnachweisen) ausgestattet. Angaben ohne ausreichenden Beleg könnten demnächst entfernt werden. Bitte hilf Wikipedia, indem du die Angaben recherchierst und gute Belege einfügst. Barbara Zápolya Das Adelswappen derer von Zápolya und der Königin Barbara Barbara Zápolya (* 1495; † 2. Oktober 1515 in Krakau) war ab 1512 durch Heirat Königin von Polen und Großfürstin von Litauen. Sie entst...

Driulis González Plaats uw zelfgemaakte foto hier Persoonlijke informatie Geboortedatum 21 februari 1973 Geboorteplaats Guantánamo Nationaliteit  Cuba Lengte 1,62 m Sportieve informatie Discipline Judo Onderde(e)l(en) halfmiddengewicht Olympische Spelen 1992, 1996, 2000, 2004, 2008 Belangrijkste prestaties Olympische Spelen: (1996)Olympische Spelen: (2000)Olympische Spelen: (1992, 2004) Portaal    Sport Driulis González Morales (Guantánamo, 21 februari 1973) is een Cubaans ...

 

Pattern of human activity and symbolism associated with the Ottoman Empire and its people Culture of theOttoman Empire Visual arts Architecture Miniature Pottery Calligraphy Performing arts Shadowplay Meddah Dance Music Languages and literature Ottoman Turkish Poetry Prose Sports Oil wrestling Archery Cirit Other Cuisine Carpets Clothing vte The culture of the Ottoman Empire evolved over several centuries as the ruling administration of the Turks absorbed, adapted and modified the various nat...

 

Professional snooker tournament Embassy World Snooker ChampionshipTournament informationDates18–30 April 1977 (1977-04-18 – 1977-04-30)VenueCrucible TheatreCitySheffieldCountryEnglandOrganisationWPBSAFormatRanking eventTotal prize fund£17,000Winner's share£6,000Highest break John Spencer (ENG) (135)FinalChampion John Spencer (ENG)Runner-up Cliff Thorburn (CAN)Score25–21← 1976 1978 → Snooker tournament The 1977 World Snooker...

Este artigo não cita fontes confiáveis. Ajude a inserir referências. Conteúdo não verificável pode ser removido.—Encontre fontes: ABW  • CAPES  • Google (N • L • A) (Abril de 2020) Esta página ou se(c)ção precisa ser formatada para o padrão wiki. Por favor ajude a formatar esta página de acordo com as diretrizes estabelecidas. (Abril de 2020) Localização de Aragão, comunidade autónoma da Espanha contemporânea. Fro...

 

Zidovudin Nama sistematis (IUPAC) 1-[(2R,4S,5S)-4-Azido-5-(hydroxymethyl)oxolan-2-yl]-5-methylpyrimidine-2,4-dione[1] Data klinis Nama dagang Retrovir AHFS/Drugs.com monograph Kat. kehamilan B3(AU) C(US) Status hukum ℞ Preskripsi saja Rute peroral, serum, suppositoria Data farmakokinetik Bioavailabilitas Absorbsi sepenuhnya, diikuti metabolisme lintas pertama. Ketersediaan di sistemik 75% (antara 52-75%) Ikatan protein 30-38% Metabolisme Hepatik Waktu paruh 0,5-3 jam Ekskresi Renal/...

 

Artikel New York Times tanggal 26 Februari 2005 yang berjudul Internet Fame Is a Cruel Mistress for a Numa Numa Dancer, tentang Gary Brolsma dan filmnya, Numa Numa Dance. Numa Numa adalah fenomena di internet yang muncul akibat video Numa Numa Dance oleh Gary Brolsma. Video tersebut dibuat dari lagu Dragostea din tei karya grup musik pop Moldova, O-Zone. Video Brolsma dirilis pada Desember 2004, dan merupakan video bertema Numa Numa pertama yang mendapat perhatian luas. Kurang dari tiga bulan...

MayfliesPoster Film Mayflies (2023)Sutradara Eddy Prasetya Produser Agus Basuki Agung Haryanto Mala Shinta Ditulis oleh Ananda Galih Katresna Ifan Ismail Pemeran Dion Wiyoko Febby Rastanty Eka Nusa Pertiwi Bayu Pamungkas SinematograferBambang Dwi ChandraPenyuntingIrianiirinPerusahaanproduksi Falcon Pictures Klikfilm Tanggal rilis 22 September 2023 (2023-09-22) (Klikfilm) Durasi67 MenitNegara Indonesia Bahasa Indonesia Pendapatankotor  Mayflies adalah sebuah film drama Indonesia ...

 

Odisha Datos generalesPaís OdishaFederación Federación de Fútbol de OdishaConfederación All India Football FederationSeleccionador Narendra Kumar SahooEquipaciones Primera Segunda Primer partido Odisha — Mejor(es) resultado(s) Sin datosPeor(es) resultado(s) Sin datosJuegos OlímpicosMejor resultado Sin Medallas[editar datos en Wikidata] La Selección de fútbol de Odisha es el equipo que representa al Estado de Odisha en los torneos de fútbol y es controlada por la Asociaci�...

 

SMA Negeri 1 MalangInformasiDidirikan17 April 1950AkreditasiAKepala SekolahDrs. Heru Wahyudi, M.Pd.Jurusan atau peminatanIPA IPS Bahasa dan AkselerasiRentang kelasX MIA 1-8 (8 Kelas), X IIS (1 Kelas), X IBB (1 Kelas) X Akselerasi XI MIA 1-8 (8 Kelas), XI IIS 1 (1 Kelas), XI IBB (1 Kelas), XI Akselerasi XII IPA 1-8 (8 Kelas), XII IPS 1 (1 Kelas), XII Bahasa (1 Kelas)KurikulumKurikulum 2013StatusNegeriAlamatLokasiJalan Tugu Utara No. 1, Malang, Jawa Timur, IndonesiaTel./Faks.+62 341 366 45...

20th and 21st-century judge of the Kerala High Court This article needs additional citations for verification. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.Find sources: Janaki Amma – news · newspapers · books · scholar · JSTOR (February 2022) (Learn how and when to remove this template message) Justice P. Janaki AmmaJustice P. Janaki AmmaBornJanaki(1920-04-22)22 April 1920Th...

 

Species of fern Polystichum scopulinum Conservation status Apparently Secure (NatureServe) Scientific classification Kingdom: Plantae Clade: Tracheophytes Division: Polypodiophyta Class: Polypodiopsida Order: Polypodiales Suborder: Polypodiineae Family: Dryopteridaceae Genus: Polystichum Species: P. scopulinum Binomial name Polystichum scopulinum(D.C.Eaton) Maxon Polystichum scopulinum is a species of fern known by the common names mountain hollyfern[1] and rock sword fern.&...

 

A major contributor to this article appears to have a close connection with its subject. It may require cleanup to comply with Wikipedia's content policies, particularly neutral point of view. Please discuss further on the talk page. (March 2022) (Learn how and when to remove this template message) American actress Ilene KristenKristen in 2014BornIlene Schatz (1952-07-30) July 30, 1952 (age 71)Brooklyn, New York City, U.S.OccupationActressYears active1971–presentWebsitehttp://www....

Cet article est une ébauche concernant Paris. Vous pouvez partager vos connaissances en l’améliorant (comment ?) selon les recommandations des projets correspondants. 4e arrtPassage Charlemagne Passage vu en direction de la rue Saint-Antoine. Situation Arrondissement 4e Quartier Saint-Gervais Début 16, rue Charlemagne Fin 119, rue Saint-Antoine Morphologie Longueur 100 m Largeur 3 m Historique Création 1825 Géocodification Ville de Paris 1803 DGI 1796 Géolocalisati...

 

2019 American television series Just Roll with ItGenreFamily comedyCreated by Adam Small Trevor Moore Starring Ramon Reed Kaylin Hayman Suzi Barrett Tobie Windham JC Currais Theme music composer Phil Hernandez Chris Maxwell Trevor Moore Adam Small Composers Chris Maxwell Phil Hernandez Country of originUnited StatesOriginal languageEnglishNo. of seasons2No. of episodes43ProductionExecutive producers Adam Small Trevor Moore James Widdoes Cinematography George Mooradian Bill Berner Camera setup...

 

Board game Circus MaximusCover of Avalon Hill edition of Circus Maximus Circus Maximus is a board game that was originally published by Battleline Publications in 1979, but is better known for the 1980 Avalon Hill edition. The game has become very popular at gaming conventions in an oversized form, with 10-foot (3.0 m)-long boards and baseball-sized chariots. Description Circus Maximus is a chariot-racing board game Up to eight players choose teams of horses and drivers, and race their c...

女性主义反战抵抗俄罗斯女性主义反战抵抗标志意識形態女性主义和平主义自由民主主义官方色彩  黄色  蓝色官方网站Telegram page 女性主义反战抵抗(俄語:Феминистское антивоенное сопротивление (ФАС),羅馬化:eministskoye antivoyennoye soprotivleniye (FAS))[1],是2022年俄罗斯入侵乌克兰后,俄罗斯女性主义者发起的反战组织。在其创立的第一个月,...

 

Australian actor (born 1966) Louis MandylorMandylor on the set of Tension(s) in August 2013BornElias Theodosopoulos (1966-09-13) 13 September 1966 (age 57)Melbourne, Victoria, AustraliaOccupationActorYears active1990–presentRelativesCostas Mandylor (brother) Louis Mandylor (born Elias Theodosopoulos; 13 September 1966) is an Australian film and television actor. Mandylor played Nick Portokalos in My Big Fat Greek Wedding (2002), a role he reprised in two sequels, My Big Fat Greek ...

 
Kembali kehalaman sebelumnya