Re: how not to match a sub-subdomain

2021-03-23 Thread Viktor Dukhovni
On Tue, Mar 23, 2021 at 12:57:08PM -0500, Noel Jones wrote: > To control how many levels are matched you'll need a regex or pcre > table. > > for matching one level, maybe: > /^[a-z0-9]+\.example\.com$/ transport:nexthop With transport lookups in regex tables, the lookup key is the full addres

Re: how not to match a sub-subdomain

2021-03-23 Thread Noel Jones
On 3/23/2021 8:35 AM, Marc Risse wrote: Hello everyone, will ".domain.com" match "b...@sub2.sub1.domain.com" or only "b...@sub1.domain.com" in transport maps? "parent_domain_matches_subdomains" is not set and I don't want it to match all subdomains on all levels. Best Marc To control