Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

miredo-checkconf(8) [debian man page]

MIREDO-CHECKCONF(8)					      System Manager's Manual					       MIREDO-CHECKCONF(8)

NAME
miredo-checkconf - Miredo configuration file syntax checking tool SYNOPSIS
miredo-checkconf [config_file] DESCRIPTON
miredo-checkconf checks the syntax of a configuration file for Miredo. miredo-checkconf exits with an error code if the syntax was found to be incorrect, contained unused directives or if the file could not be opened. OPTIONS
-h or --help Display some help and exit. -V or --version Display program version and exit. config_file This optional argument specifies the path to the configuration file to be checked. If not given, the default /etc/miredo/miredo.conf will be assumed. BUGS
miredo-checkconf cannot check the syntax of a configuration file for miredo-server. FILES
/etc/miredo/miredo.conf The default configuration file. SEE ALSO
miredo.conf(5), miredo(8) AUTHOR
Remi Denis-Courmont <remi at remlab dot net> http://www.remlab.net/miredo/ miredo February 2008 MIREDO-CHECKCONF(8)

Check Out this Related Man Page

TEREDO-MIRE(1)							   User Commands						    TEREDO-MIRE(1)

NAME
teredo-mire - Stateless Teredo IPv6 responder SYNOPSIS
teredo-mire DESCRIPTON
Teredo-Mire is a test back-end for the Teredo IPv6 tunneling protocol. It listens for requests from other Teredo clients or IPv6 nodes (through Teredo relays) and answers to them statelessly. Currently only ICMPv6 Echo Requests ("pings") are handled. OPTIONS
-h or --help Display some help and exit. -V or --version Display program version and exit. DIAGNOSTICS
To contact a teredo-mire responder, a valid Teredo IPv6 address must be determined for it. The server IPv4 address and mapped client IPv4 address parts should both represent the IPv4 address of the host running teredo-mire. The mapped UDP port number must be 3545. The Teredo prefix and Teredo flags are ignored. BUGS
teredo-mire uses UDP ports 3544 and 3545, and assumes it has a public IPv4 address. Neither RFC 2460 nor RFC 4380 are properly implemented. SECURITY
teredo-mire does not require any priviledge to run. SEE ALSO
ping6(8), miredo(8), ipv6(7) AUTHOR
Remi Denis-Courmont <remi at remlab dot net> http://www.remlab.net/miredo/ miredo February 2008 TEREDO-MIRE(1)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

exit value of the last run

I want to get the exit value of the last run. I thought I can use the argument "$?" which supposed to hold the value but I get a syntax error. Is there another way? Thanks (2 Replies)
Discussion started by: didi
2 Replies

2. OS X (Apple)

vim and syntax max os

Hi how to color syntax in terminal in OS X ? I wrote in .vimrc: if &t_Co > 2 || has("gui_running") syntax on set hlsearch endif syntax on and no results. Best regards (1 Reply)
Discussion started by: kezzol
1 Replies

3. Programming

Tools for writing a simple syntax checker?

I'm trying to write a small utility for syntax checking. I've tried using Flex/Bison, but these seem too advanced for my task. A simpler tool would be appreciated. (1 Reply)
Discussion started by: Ilja
1 Replies

4. Shell Programming and Scripting

perl read and write to conf file

Hi Everyone, There is a perl file: a.pl ============ #!/usr/bin/perl my $config_file = $ARGV; open CONFIG, "$config_file" or die "Program stopping, couldn't open the configuration file '$config_file'.\n"; my $config = join "", <CONFIG>; close CONFIG; eval $config; die "Couldn't... (1 Reply)
Discussion started by: jimmy_y
1 Replies