AIX cifs hostname com sublinhado

1

Eu estou tentando digitar esse comando, mas por algum motivo ele pega a primeira e não a segunda versão. Eu digitei ambos os nomes de host no arquivo host, FYI.

Este comando funciona (hostname zq13c1 ):

mkcifsmnt -f /aix_bk5 -d AIX -h zq13c1 -c 'aix_user' -p 'Cognizant123' -u 214 -g 204 -t rw 

Este comando não funciona (hostname zq13c1_bk ):

mkcifsmnt -f /aix_bk5 -d AIX -h zq13c1_bk -c 'aix_user' -p 'Cognizant123' -u 214 -g 204 -t rw 
    
por JackyBoi 14.01.2014 / 03:04

1 resposta

2

Citações de este artigo da wiki :

The Internet standards (Request for Comments) for protocols mandate that component hostname labels may contain only the ASCII letters 'a' through 'z' (in a case-insensitive manner), the digits '0' through '9', and the hyphen ('-'). The original specification of hostnames in RFC 952, mandated that labels could not start with a digit or with a hyphen, and must not end with a hyphen. However, a subsequent specification (RFC 1123) permitted hostname labels to start with digits. No other symbols, punctuation characters, or white space are permitted.

O sublinhado _ não é um caractere válido em um nome de host.

    
por 14.01.2014 / 03:25