This is a discussion on Re: HELP! DNS Problem within the Bind Users forums, part of the DNS and Related Forums category; In article <binmkm$skj$1@sf1.isc.org>, David Meier <meier@logmail.net> wrote: >To ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
In article <binmkm$skj$1@sf1.isc.org>, David Meier <meier@logmail.net> wrote:
>To include the zone in named I need to create a command such as: > >$ ucx set conf bind /prime=(domain:32/27.214.141.195.in-addr.arpa) > >which leads to the following error: > >%CLI-W-NOPAREN, value improperly delimited - supply parenthesis > \32\ > >Now how can I create such a zone entry in VMS? Any input is GREATLY >appreciated! This doesn't seem to be a BIND issue, it's an issue with VMS command line parsing. It looks to me like VMS is seeing the '/' in the domain name, and treating it as if it were introducing a new option. I don't know VMS very well, but I'll bet there's a way to escape that slash so it won't be treated specially like this. Backslash is the escape character that many operating systems use, so perhaps it's something like: $ ucx set conf bind /prime=(domain:32\/27.214.141.195.in-addr.arpa) If that's not right, I suggest you pull out your VMS documentation to find out the correct way to include literal slashes in command parameters. -- Barry Margolin, barry.margolin@level3.com Level(3), Woburn, MA *** DON'T SEND TECHNICAL QUESTIONS DIRECTLY TO ME, post them to newsgroups. Please DON'T copy followups to me -- I'll assume it wasn't posted to the group. |