The syntax of fnbind for building a reference on the command line is:
| fnbind -r [-s] [-v] newname [-O | -U] reftype {[-O | -U] | addresstype [-c|-x] addresscontents}+ | 
| Option | Description | 
|---|---|
| newname | The new name for which you are constructing a reference | 
| reftype | The type of reference you are creating. Unless the -O or -U options are used, FN_ID_STRING is used as the indentifier for reftype. | 
| addresstype | The type of address you are creating. Unless the -O or -U options are used, FN_ID_STRING is used as the indentifier for addresstype. | 
| addresscontents | The address of the reference you are creating. Unless the -c or -x options are used, the address is stored as an XDR-encoded string. | 
| -s | Supersedes any existing binding of the original composite name | 
| -v | Prints out the reference used for the binding | 
| -c | Stores address contents without XDR encoding | 
| -x | Interprets address contents as a hexadecimal input string and store it as is | 
| -r | Creates a reference with a specified type and binds the reference to a name specified on the command line | 
| -O | Interprets and stores type string as ASN.1 dot-separated integer list | 
| -U | Interprets and stores type string as a DCE UUID | 
For example, to bind the name thisorgunit/service/calendar to the address contents of staff@cygnus with a reference type of onc_calendar and and an address type onc_cal_str you would enter:
| # fnbind -r thisorgunit/service/calendar onc_calendar onc_cal_str staff@cygnus | 
By default, the address contents supplied in the command line is XDR-encoded before being stored in the reference. If the -c option is given, the address contents are stored in normal, readable characters, not as an XDR-encoded string. If the -x option is given, the address contents supplied in the command line are interpreted as a hexadecimal string and stored (and not XDR-encoded).
By default, the reference and address types of the reference to be constructed uses the FN_ID_STRING identifier format. If the -O option is given,
the identifier format is FN_ID_ISO_OID_STRING, an ASN.1 dot-separated
integer list string. If the -U option is given, the identifier format is FN_ID_DCE_UUID, a DCE UUID in string form. 
For more information on ASN.1, see ISO 8824: 1990, Information Technology -- Open Systems Interconnection -- Specification of Abstract Syntax Notation One (ASN.1). For more information on DCE UUID see X/Open Preliminary Specification, October 1993, X/Open DCE: Remote Procedure Call (ISBN: 1-872630-95-2).
For example, to bind to the name thisorgunit/service/nx a reference with a hexadecimal string as the address contents and OIDs as reference and address types, you would enter:
| # fnbind -r thisorgunit/service/nx -O 1.2.99.6.2.1 -O 1.2.99.6.2.3 -x ef12eab67290 |