I want to configure a serial interface on a 7500 with a VIP
card.
What global config command would give me access to a serial
interface on
a 7500?
A.) int 1/0/0
B.) int s 1/0/0
C.) int s 1/1
D.) int s0.1
E.) int s1
Answers were Sorted based on User's Feedback
Answer / dfsdfds
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Retrieve Data Using JQuery...</title>
<script src="JQuery/jquery-1.4.2.js"
type="text/javascript"></script>
<script src="JQuery/jquery-ui-1.8.2.custom.min.js"
type="text/javascript"></script>
<link href="css/jquery-ui-1.8.4.custom.css"
rel="stylesheet" type="text/css" />
<script src="JQuery/jquery-ui-1.8.4.custom.min.js"
type="text/javascript"></script>
<link type="text/css"
href="JQuery/themes/base/jquery.ui.all.css" rel="stylesheet" />
<script type="text/javascript"
src="JQuery/external/jquery.bgiframe-2.1.1.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.core.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.widget.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.mouse.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.button.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.draggable.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.position.js"></script>
<script type="text/javascript"
src="JQuery/ui/jquery.ui.dialog.js"></script>
<script src="JQuery/service1.js"
type="text/javascript"></script>
<style type="text/css">
#btnGet
{
width: 243px;
}
#btnAdd
{
width: 174px;
}
#btnDelete
{
width: 184px;
}
#btnUpdate
{
width: 173px;
}
</style>
</head>
<body>
<div id="stdData">
</div>
<div id="stdAdd" style="display:none; font-size:small;">
<table>
<tr>
<td>Enter Your ID : </td>
<td><input type="text" id="txtID" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your Name : </td>
<td><input type="text" id="txtName" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your Course : </td>
<td><input type="text" id="txtCourse" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your USN : </td>
<td><input type="text" id="txtUsn" /></td>
<td> </td>
</tr>
<tr>
<td colspan="3"
align="center">
<input type="button" id="btnAddData"
value="Submit Data" /></td>
</tr>
</table>
</div>
<div id="stdDelete" style="display:none; font-size:small;">
<table>
<tr>
<td>Enter Your ID : </td>
<td><input type="text" id="txtDelId" /></td>
<td> </td>
</tr>
<tr>
<td colspan="3"
align="center">
<input type="button" id="btnDeleteData"
value="Submit Data" /></td>
</tr>
</table>
</div>
<div id="studUpdate" style="display:none; font-size:small;">
<table>
<tr>
<td>Enter Your ID : </td>
<td><input type="text" id="txtUpdateID" /></td>
<td> </td>
</tr>
<tr>
<td colspan="3"
align="center">
<input type="button" id="btnUpdateDetails"
value="Submit Data" /></td>
</tr>
</table>
</div>
<div id="updateDetails" style="display:none;
font-size:small;">
<table>
<tr>
<td>Enter Your ID : </td>
<td><input type="text" id="txtUpId" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your Name : </td>
<td><input type="text" id="txtUpName" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your Course : </td>
<td><input type="text" id="txtUpCourse" /></td>
<td> </td>
</tr>
<tr>
<td>Enter Your USN : </td>
<td><input type="text" id="txtUpUsn" /></td>
<td> </td>
</tr>
<tr>
<td colspan="3"
align="center">
<input type="button" id="btnUpDetails"
value="Submit Data" /></td>
</tr>
</table>
</div>
<table>
<tr>
<td><input type="button" value=" Please CLICK to
Retrieve Student Data" id="btnGet" /></td>
<td><input type="button" value=" CLICK to Add
Your Data" id="btnAdd" /></td>
<td><input type="button" value=" CLICK to Delete
Your Data" id="btnDelete" /></td>
<td><input type="button" value=" CLICK to Update
Your Data" id="btnUpdate" /></td>
</tr>
</table>
</body>
</html>
/// <reference path="jquery-1.4.1-vsdoc.js" />
$(document).ready(function() {
$('input:button').addClass("btnClass");
fillData();
$('#btnGet').click(function() {
fillData();
});
function fillData() {
$.ajax({
type: "Post",
url: "../Linq/myService.asmx/getStudent",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
//var nMsg = (typeof msg.d) == 'string' ?
eval('(' + msg.d + ')') : msg.d;
var t = "<table width='80%' id='resTab'> <tr>" +
"<td colspan='5'
style='text-align:center'><font size='3'><strong>Your Search
Result......</strong></font></td></tr> <tr><td
style='text-align:left' colspan='5'><hr></td></tr> "
+ " <tr><td
style='text-align:center'>Student ID</td><td
style='text-align:center'>Student Name</td><td
style='text-align:center'>Student Course</td><td
style='text-align:center'>Student USN</td></tr>"
+ " <tr><td style='text-align:left'
colspan='5'><hr><br></td></tr> ";
$.each(msg.d, function(index, item) {
t = t + " <tr><td
style='text-align:center'>" + item.studId + "</td><td
style='text-align:center'>" + item.studName + "</td><td
style='text-align:center'>" + item.studCourse + "</td><td
style='text-align:center'>" + item.studUsn +
"</td><td><input type='button' ID='btn" + item.studId + "'
value='Delete'/></td></tr>";
t = t + " <tr><td
style='text-align:left' colspan='5'><hr></td></tr> ";
});
t = t + " </table> ";
$("#stdData").html(t);
},
error: function(msg) { }
});
}
$("#stdData input[type='button']").click(function() {
//var clId = $(this).attr('value');
//var btnId=$(this).find("input:button").attr('id');
alert("");
});
$('#btnAdd').click(function() {
$("#stdAdd").dialog({
title: "Please Enter Student Data ....!!!",
resizable: false,
closeOnEscape: false,
modal: true,
width: 400
}).parent().find('div.ui-dialog-titlebar');
});
$('#btnAddData').click(function() {
$.ajax({
type: "Post",
data: '{stdId: "' + $('#txtID').val() + '",
stdName: "' + $('#txtName').val() + '", stdCourse: "' +
$('#txtCourse').val() + '", stdUsn: "' + $('#txtUsn').val()
+ '"}',
url: "../Linq/myService.asmx/insertStudent",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
alert(msg.d);
$('#txtID').val("");
$('#txtName').val("");
$('#txtCourse').val("");
$('#txtUsn').val("");
window.location.href = "useService.htm";
},
error: function(msg) { alert(msg.d); }
});
});
$('#btnDelete').click(function() {
$("#stdDelete").dialog({
title: "Please Enter Student ID ....!!!",
resizable: false,
closeOnEscape: false,
modal: true,
width: 400
}).parent().find('div.ui-dialog-titlebar');
});
$('#btnDeleteData').click(function() {
$.ajax({
type: "Post",
data: '{stdId: "' + $('#txtDelId').val() + '"}',
url: "../Linq/myService.asmx/deleteStudent",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
alert(msg.d);
$('#txtDelId').val("");
window.location.href = "useService.htm";
},
error: function(msg) { alert(msg.d); }
});
});
$('#btnUpdate').click(function() {
$("#studUpdate").dialog({
title: "Please Enter Student ID ....!!!",
resizable: false,
closeOnEscape: false,
modal: true,
width: 400
}).parent().find('div.ui-dialog-titlebar');
});
$('#btnUpdateDetails').click(function() {
$.ajax({
type: "Post",
data: '{stdId: "' + $('#txtUpdateID').val() + '"}',
url: "../Linq/myService.asmx/updateStudentData",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
var nMsg = (typeof msg.d) == 'string' ?
eval('(' + msg.d + ')') : msg.d;
$("#updateDetails").dialog({
title: "Update Student Details ....!!!",
resizable: false,
closeOnEscape: false,
modal: true,
width: 400
}).parent().find('div.ui-dialog-titlebar');
$('#txtUpId').val(nMsg[0]).attr('readOnly',
'true');
$('#txtUpName').val(nMsg[1]);
$('#txtUpCourse').val(nMsg[2]);
$('#txtUpUsn').val(nMsg[3]);
},
error: function(msg) { alert(msg.d); }
});
});
$('#btnUpDetails').click(function() {
$.ajax({
type: "Post",
data: '{stdId: "' + $('#txtUpId').val() + '",
stdName: "' + $('#txtUpName').val() + '", stdCourse: "' +
$('#txtUpCourse').val() + '", stdUsn: "' +
$('#txtUpUsn').val() + '"}',
url: "../Linq/myService.asmx/updateStudentDetails",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
alert(msg.d);
$('#txtUpId').val("");
$('#txtUpName').val("");
$('#txtUpCourse').val("");
$('#txtUpUsn').val("");
window.location.href = "useService.htm";
},
error: function(msg) { alert(msg.d); }
});
});
});
| Is This Answer Correct ? | 0 Yes | 0 No |
if i am using active directory,i have router also.then how i configure router,means which address will be default gatway in active directory & roter how to give ip address details in router.
what is default route
PLACE YOURS QUESTION HERE I ALSWYS BE HERE FROM 9 AM TO 6PM SO U CAN FIND YOUR ANSWER QUICKLY.IF I KNOW THEN ? JJIITTEENNDDEERRAA SSIINNHHAA
What is size of ipv4 mac address?
What is the logical link control?
Which commands would assign and enable IPX on an interface ? A.) enable netware B.) enable novell-ether C.) router#(config)ipx routing D.) You must first enable IPX globally and then assign the network number to the interface . E.) enable ipx F.) router#(config-if)ipx network 4a
What does data packets consist of?
How do you disable advanced editing? A.) terminal editing B.) terminal no editing C.) disable editing D.) no terminal editing
What is the command use to add a banner to a cisco router configuration?
Classful routing protocols do not include subnet masks in their routing updates. Which of the following routing protocols are considered classful? A.) EIGRP B.) OSPF C.) TCP D.) IGRP E.) RIP F.) IP
What are two functions of the ICMP protocol? (Choose two) A. to map IP addresses to Ethernet addresses B. to map common names to network addresses C. to forward SNMP alerts to management consoles D. to generate an echo reply in response to a ping test E. to send a host or pod unreachable message from a router to the source of an undeliverable packet
If you are in IOS user mode, which command do you use to enter the privileged mode? A. Set B. Enable C. Configure D. Privileges