{"id":106,"date":"2007-08-19T22:32:36","date_gmt":"2007-08-19T20:32:36","guid":{"rendered":"http:\/\/www.corelan.be:8800\/?p=85"},"modified":"2007-08-19T22:32:36","modified_gmt":"2007-08-19T20:32:36","slug":"running-snort-with-dynamic-ip-on-fedora","status":"publish","type":"post","link":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/","title":{"rendered":"Running Snort with Dynamic IP on Fedora"},"content":{"rendered":"<div class=\"ExternalClass00E44FD7B83C4924814B7D5916E0EB05\">\n<p>One of my Linux boxes has a direct cable connection to the internet. I've been using Snort in corporate environments for a long time now, but I never had to configure snort to look at interfaces that have a DHCP assigned IP address and actually use that IP address as its HOME_NET.<\/p>\n<p>There's an easy way (which may not work with an older version of Snort), and there's a somewhat 'harder' way (With a couple of scripts, this can be done as well).<\/p>\n<p>The easy way consists of using a Snort variable that refers to the Ethernet interface. Use the following line in your snort.conf file and you should be fine.<br \/>\nvar HOME_NET $eth1_ADDRESS<\/p>\n<p>If that doesn't work, you can use the scripts.<\/p>\n<p>Before going into the details, I need to make some assumptions :<\/p>\n<ol>\n<li>eth1 is the internet facing interface, IP is DHCP assigned<\/li>\n<li>I'm going to consider the IP address of that interface as my HOME_NET snort variable<\/li>\n<li>I'm not going to use any other IP addresses or subnets in the HOME_NET variable (although this could be easily done by changing the scripts)<\/li>\n<li>I've created two additional folders : \/root\/conf and \/root\/bin. Both are only accessible by root<\/li>\n<\/ol>\n<p>First of all, you need to build the snort.conf file. Just leave out the HOME_NET setting at the top of the script. My snort installation sits under \/snortinternet. Put the (incomplete) snort.conf file (the file without the 'var HOME_NET=' entry somewhere else (under \/root\/conf for example)<\/p>\n<p>Create a script called '<strong>geteth1.sh<\/strong>' and put it under \/root\/bin. This script contains the following commands :<\/p>\n<div>\n<table style=\"background: silver; border-collapse: collapse;\" border=\"0\">\n<colgroup span=\"1\">\n<col style=\"width: 554px;\" span=\"1\"><\/col>\n<\/colgroup>\n<tbody>\n<tr>\n<td style=\"padding-right: 7px; padding-left: 7px; padding-bottom: 1px; padding-top: 1px; border: #404040 1pt solid;\" valign=\"middle\"><span style=\"font-size: 9pt; font-family: Courier New;\"><strong>#!\/bin\/bash<br \/>\n\/sbin\/ifconfig eth1 | awk '\/inet\/ { print $2 }' | awk -F \":\" '{ print $2 }'<\/strong><\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>(This script will output the IP address that is assigned to eth1)<\/p>\n<p>Next, create another script called '<strong>createsnortconf.sh<\/strong>' and save it under \/root\/bin :<\/p>\n<div>\n<table style=\"background: silver; border-collapse: collapse;\" border=\"0\">\n<colgroup span=\"1\">\n<col style=\"width: 619px;\" span=\"1\"><\/col>\n<\/colgroup>\n<tbody>\n<tr>\n<td style=\"padding-right: 7px; padding-left: 7px; padding-bottom: 1px; padding-top: 1px; border: #404040 1pt solid;\" valign=\"middle\"><span style=\"font-size: 9pt; font-family: Courier New;\"><strong>#!\/bin\/bash <\/strong><\/span><\/p>\n<p><span style=\"font-size: 9pt; font-family: Courier New;\"><strong>echo 'var HOME_NET ['`\/bin\/bash \/root\/bin\/geteth1.sh`'\/32]'&gt;\/root\/conf\/snorttop.conf<br \/>\ncat \/root\/conf\/snort.conf &gt;&gt;\/root\/conf\/snorttop.conf<br \/>\ncp \/root\/conf\/snorttop.conf \/snortinternet\/snort.conf<\/strong><\/span><\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n<p>This script basically grabs the IP address of eth1, stores it into a temporary file, puts the temporary file and the (incomplete) snort.conf file from \/root\/bin together and overwrites the \/snortinternet\/snort.conf file with the new file.<\/p>\n<p>If you keep you snort.conf file somewhere else, just edit the paths in the script and you'll be fine.<\/p>\n<p>Next, make sure to run the script prior to starting snort. I usually create a 'runsnort.sh' script that will fire up snort with the necessary parameters, so that would be a good place to launch the script from.<\/p>\n<p>Note : if you decide to make changes to your snort.conf, make sure to change the snort.conf file under \/root\/conf and then run the createsnortconf.sh script again to apply the changes to the \/snortinternet folder.<\/p><\/div>\n","protected":false},"excerpt":{"rendered":"<p>One of my Linux boxes has a direct cable connection to the internet. I've been using Snort in corporate environments for a long time now, but I never had to configure snort to look at interfaces that have a DHCP assigned IP address and actually use that IP address as its HOME_NET. There's an easy &hellip; <a href=\"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> \"Running Snort with Dynamic IP on Fedora\"<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_publicize_message":"","jetpack_publicize_feature_enabled":true,"jetpack_social_post_already_shared":false,"jetpack_social_options":{"image_generator_settings":{"template":"highway","default_image_id":0,"font":"","enabled":false},"version":2}},"categories":[64,127],"tags":[133,131],"class_list":["post-106","post","type-post","status-publish","format-standard","hentry","category-linux","category-security","tag-snort","tag-linux"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Running Snort with Dynamic IP on Fedora - Corelan | Exploit Development &amp; Vulnerability Research<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Running Snort with Dynamic IP on Fedora - Corelan | Exploit Development &amp; Vulnerability Research\" \/>\n<meta property=\"og:description\" content=\"One of my Linux boxes has a direct cable connection to the internet. I&#039;ve been using Snort in corporate environments for a long time now, but I never had to configure snort to look at interfaces that have a DHCP assigned IP address and actually use that IP address as its HOME_NET. There&#039;s an easy &hellip; Continue reading &quot;Running Snort with Dynamic IP on Fedora&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/\" \/>\n<meta property=\"og:site_name\" content=\"Corelan | Exploit Development &amp; Vulnerability Research\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/corelanconsulting\" \/>\n<meta property=\"article:published_time\" content=\"2007-08-19T20:32:36+00:00\" \/>\n<meta name=\"author\" content=\"corelanc0d3r\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@corelanc0d3r\" \/>\n<meta name=\"twitter:site\" content=\"@corelanc0d3r\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"TechArticle\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2007\\\/08\\\/19\\\/running-snort-with-dynamic-ip-on-fedora\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2007\\\/08\\\/19\\\/running-snort-with-dynamic-ip-on-fedora\\\/\"},\"author\":{\"name\":\"corelanc0d3r\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#\\\/schema\\\/person\\\/3be5542b9b0a0787893db83a5ad68e8f\"},\"headline\":\"Running Snort with Dynamic IP on Fedora\",\"datePublished\":\"2007-08-19T20:32:36+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2007\\\/08\\\/19\\\/running-snort-with-dynamic-ip-on-fedora\\\/\"},\"wordCount\":499,\"publisher\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#organization\"},\"keywords\":[\"snort\",\"Linux and Unix\"],\"articleSection\":[\"Linux and Unix\",\"Security\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2007\\\/08\\\/19\\\/running-snort-with-dynamic-ip-on-fedora\\\/\",\"url\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2007\\\/08\\\/19\\\/running-snort-with-dynamic-ip-on-fedora\\\/\",\"name\":\"Running Snort with Dynamic IP on Fedora - Corelan | Exploit Development &amp; Vulnerability Research\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#website\"},\"datePublished\":\"2007-08-19T20:32:36+00:00\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2007\\\/08\\\/19\\\/running-snort-with-dynamic-ip-on-fedora\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2007\\\/08\\\/19\\\/running-snort-with-dynamic-ip-on-fedora\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/2007\\\/08\\\/19\\\/running-snort-with-dynamic-ip-on-fedora\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.corelan.be\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Running Snort with Dynamic IP on Fedora\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#website\",\"url\":\"https:\\\/\\\/www.corelan.be\\\/\",\"name\":\"Corelan CyberSecurity Research\",\"description\":\"Corelan publishes in-depth tutorials on exploit development, Windows exploitation, vulnerability research, heap internals, reverse engineering and security tooling used by professionals worldwide.\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.corelan.be\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#organization\",\"name\":\"Corelan CyberSecurity Research\",\"url\":\"https:\\\/\\\/www.corelan.be\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.corelan.be\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/corelanlogo2_small-20.png\",\"contentUrl\":\"https:\\\/\\\/www.corelan.be\\\/wp-content\\\/uploads\\\/2026\\\/03\\\/corelanlogo2_small-20.png\",\"width\":200,\"height\":200,\"caption\":\"Corelan CyberSecurity Research\"},\"image\":{\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/corelanconsulting\",\"https:\\\/\\\/x.com\\\/corelanc0d3r\",\"https:\\\/\\\/x.com\\\/corelanconsulting\",\"https:\\\/\\\/instagram.com\\\/corelanconsult\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.corelan.be\\\/#\\\/schema\\\/person\\\/3be5542b9b0a0787893db83a5ad68e8f\",\"name\":\"corelanc0d3r\",\"pronouns\":\"he\\\/him\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x\",\"caption\":\"corelanc0d3r\"},\"description\":\"Peter Van Eeckhoutte is the founder of Corelan and a globally recognized expert in exploit development and vulnerability research. With over two decades in IT security, he built Corelan into a respected platform for deep technical research, hands-on training, and knowledge sharing. Known for his influential exploit development tutorials, tools, and real-world training, Peter combines a strong research mindset with a passion for education\u2014helping security professionals understand not just how exploits work, but why.\",\"sameAs\":[\"https:\\\/\\\/www.corelan-training.com\",\"https:\\\/\\\/instagram.com\\\/corelanc0d3r\",\"https:\\\/\\\/www.linkedin.com\\\/in\\\/petervaneeckhoutte\\\/\",\"https:\\\/\\\/x.com\\\/corelanc0d3r\"],\"url\":\"https:\\\/\\\/www.corelan.be\\\/index.php\\\/author\\\/admin0\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Running Snort with Dynamic IP on Fedora - Corelan | Exploit Development &amp; Vulnerability Research","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/","og_locale":"en_US","og_type":"article","og_title":"Running Snort with Dynamic IP on Fedora - Corelan | Exploit Development &amp; Vulnerability Research","og_description":"One of my Linux boxes has a direct cable connection to the internet. I've been using Snort in corporate environments for a long time now, but I never had to configure snort to look at interfaces that have a DHCP assigned IP address and actually use that IP address as its HOME_NET. There's an easy &hellip; Continue reading \"Running Snort with Dynamic IP on Fedora\"","og_url":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/","og_site_name":"Corelan | Exploit Development &amp; Vulnerability Research","article_publisher":"https:\/\/www.facebook.com\/corelanconsulting","article_published_time":"2007-08-19T20:32:36+00:00","author":"corelanc0d3r","twitter_card":"summary_large_image","twitter_creator":"@corelanc0d3r","twitter_site":"@corelanc0d3r","schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"TechArticle","@id":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/#article","isPartOf":{"@id":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/"},"author":{"name":"corelanc0d3r","@id":"https:\/\/www.corelan.be\/#\/schema\/person\/3be5542b9b0a0787893db83a5ad68e8f"},"headline":"Running Snort with Dynamic IP on Fedora","datePublished":"2007-08-19T20:32:36+00:00","mainEntityOfPage":{"@id":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/"},"wordCount":499,"publisher":{"@id":"https:\/\/www.corelan.be\/#organization"},"keywords":["snort","Linux and Unix"],"articleSection":["Linux and Unix","Security"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/","url":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/","name":"Running Snort with Dynamic IP on Fedora - Corelan | Exploit Development &amp; Vulnerability Research","isPartOf":{"@id":"https:\/\/www.corelan.be\/#website"},"datePublished":"2007-08-19T20:32:36+00:00","breadcrumb":{"@id":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.corelan.be\/index.php\/2007\/08\/19\/running-snort-with-dynamic-ip-on-fedora\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.corelan.be\/"},{"@type":"ListItem","position":2,"name":"Running Snort with Dynamic IP on Fedora"}]},{"@type":"WebSite","@id":"https:\/\/www.corelan.be\/#website","url":"https:\/\/www.corelan.be\/","name":"Corelan CyberSecurity Research","description":"Corelan publishes in-depth tutorials on exploit development, Windows exploitation, vulnerability research, heap internals, reverse engineering and security tooling used by professionals worldwide.","publisher":{"@id":"https:\/\/www.corelan.be\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.corelan.be\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.corelan.be\/#organization","name":"Corelan CyberSecurity Research","url":"https:\/\/www.corelan.be\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.corelan.be\/#\/schema\/logo\/image\/","url":"https:\/\/www.corelan.be\/wp-content\/uploads\/2026\/03\/corelanlogo2_small-20.png","contentUrl":"https:\/\/www.corelan.be\/wp-content\/uploads\/2026\/03\/corelanlogo2_small-20.png","width":200,"height":200,"caption":"Corelan CyberSecurity Research"},"image":{"@id":"https:\/\/www.corelan.be\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/corelanconsulting","https:\/\/x.com\/corelanc0d3r","https:\/\/x.com\/corelanconsulting","https:\/\/instagram.com\/corelanconsult"]},{"@type":"Person","@id":"https:\/\/www.corelan.be\/#\/schema\/person\/3be5542b9b0a0787893db83a5ad68e8f","name":"corelanc0d3r","pronouns":"he\/him","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x","url":"https:\/\/secure.gravatar.com\/avatar\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/3783bed6acd72d7fa5bb2387d88acbb9a3403e7cada60b2037e1cbb74ad451f9?s=96&d=mm&r=x","caption":"corelanc0d3r"},"description":"Peter Van Eeckhoutte is the founder of Corelan and a globally recognized expert in exploit development and vulnerability research. With over two decades in IT security, he built Corelan into a respected platform for deep technical research, hands-on training, and knowledge sharing. Known for his influential exploit development tutorials, tools, and real-world training, Peter combines a strong research mindset with a passion for education\u2014helping security professionals understand not just how exploits work, but why.","sameAs":["https:\/\/www.corelan-training.com","https:\/\/instagram.com\/corelanc0d3r","https:\/\/www.linkedin.com\/in\/petervaneeckhoutte\/","https:\/\/x.com\/corelanc0d3r"],"url":"https:\/\/www.corelan.be\/index.php\/author\/admin0\/"}]}},"views":1813,"jetpack_publicize_connections":[],"jetpack_featured_media_url":"","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/posts\/106","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/comments?post=106"}],"version-history":[{"count":0,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/posts\/106\/revisions"}],"wp:attachment":[{"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/media?parent=106"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/categories?post=106"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.corelan.be\/index.php\/wp-json\/wp\/v2\/tags?post=106"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}