|
|
DataMuseum.dkPresents historical artifacts from the history of: Rational R1000/400 Tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about Rational R1000/400 Tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: B T
Length: 1527 (0x5f7)
Types: TextFile
Names: »B«
└─⟦5829e5ed5⟧ Bits:30000534 8mm tape, Rational 1000, RCI 2_0_5
└─⟦c9a165082⟧ »DATA«
└─⟦c3895f76e⟧
└─⟦this⟧
separate (Template)
function Get_Telnet_Info return Tc.Object is
Error_Pattern_List : constant Tc.Pattern_List :=
(1 => Tc.Build (Pattern_String => "error", For_Target => T_Name));
Warning_Pattern_List : constant Tc.Pattern_List :=
(1 => Tc.Build (Pattern_String => "warning", For_Target => T_Name));
Tc_Characteristics : Tc.Object :=
Tc.Build (Username_Prompt => "login: ",
Username_Failure => "",
Password_Prompt => "password:",
Password_Failure => "Login Incorrect",
Command_Prompt => "$ ",
Prompt1 => "",
Prompt2 => "",
Prompt3 => "",
Prompt4 => "",
Check_Status_Of_Commands => True,
Status_Command => "echo $?",
Status_Code_Offset => 1,
Status_Code_Length => 1,
Dir_Command => "ls",
Initial_Command =>
"/bin/sh -c 'PS1=""$ "" ; export PS1; /bin/sh'",
Transmit_Before_Login => "",
Transmit_After_Login => ((1 => Ascii.Cr) & (2 => Ascii.Cr) &
(3 => Ascii.Cr) & (4 => Ascii.Cr)),
Error_Pattern_List => Error_Pattern_List,
Warning_Pattern_List => Warning_Pattern_List,
Telnet_Protocol_Local_Echo => False,
For_Target => T_Name);
begin
return Tc_Characteristics;
end Get_Telnet_Info;