Question : Cisco 2811 and ASA 5505 pass /29 to the ASA

Hi, I have just got a 2811 router and setup using a dialer interface and natting the inside all working fine, i would now like to use the 2811 as the DSL connection but have the ASA doing all the nat and pat for the rest of the external subnet.

Do i need to setup the dialer as a bridge member? if so how?

Answer : Cisco 2811 and ASA 5505 pass /29 to the ASA

Because your For...Next loop is not enumerating the rows in the recordset.
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
SQL = "SELECT attendee_name, attendee_email " & _
    "FROM meetings_attendees " & _
    "WHERE meeting_id = '" & intMtgID & "' AND (invited = '0' OR invited IS NULL) " & _
    "AND (emailed = '0' OR emailed IS NULL)"
 
Set objRSAtt = objConn.Execute(SQL)
 
Do Until objRSAtt.EOF
    strAttName = objRSAtt.Fields.Item("attendee_name").Value
    strAttEmail = objRSAtt.Fields.Item("attendee_email").Value
    Response.Write(strAttName) & "<br />"
    Response.Write(strAttEmail) & "<br />"
    objRSAtt.MoveNext
Loop
Random Solutions  
 
programming4us programming4us