我对Vx520和PPP连接有疑问。 我必须创建与我的客户端的PPP X.25连接,它需要登录和密码。 我尝试设置PSTN连接(使用CE_COMM_TECH_DIALONLY设备的ceStartDialIF函数)。 它不能与CE_COMM_TECH_PPPDIAL一起使用,除了在CE_COMM_TECH_DIALONLY连接中无法定义用户名和密码外,在CE_COMM_TECH_PPPDIAL中也无法为我的客户端定义电话号码。 请解释我如何通过使用凭证和X.25协议的PSTN实现PPP连接。 我知道如何配置以太网和GPRS,但很难通过PSTN创建这种连接。
答案 0 :(得分:0)
好的,我制作了这样的代码 - 是否可以建立PSTN / PPP连接?
int iCount;
int iBuffer;
stNIInfo *pniInfo;
unsigned int retLen;
char chBuffer[50];
// Register with CommEngine
ceRegister();
// Fetch number of Network Interfaces (NWIF)
iCount = ceGetNWIFCount();
// Allocate space
pniInfo = new stNIInfo[niCount];
// NWInfo
ceGetNWIFInfo(pniInfo, niCount, &retLen);
//Search for driver types and keep the handle
for (int z = 0; z < niCount; z++)
{
// uwaga: dla GPRS należy jeszcze sprawdzać comm technology
if (pniInfo[z].niDeviceDriverType == CE_DRV_TYPE_PPP)
iPPPHandle = pniInfo[z].niHandle;
}
//In the case of a string type:
ceSetDDParamValue(iPPPHandle,INI_DIAL_PRIMARY,"002222229000",sizeof("002222229000"));
ceGetDDParamValue(iPPPHandle, INI_DIAL_PRIMARY, sizeof(chBuffer), chBuffer, &retLen);
stNI_PPPConfig pppCon;
pppCon.ncAuthType = PPP_AUTH_PAP;
strcpy(pppCon.ncUsername,"User1");
strcpy(pppCon.ncPassword,"!21wsed@@");
// set login & password for the PPP connection
ceSetNWParamValue(iPPPHandle, "PPP_CONFIG", (const void *)&pppCon, sizeof(pppCon));
//open network interface
ceStartNWIF(iPPPHandle, CE_OPEN);