PHPackages                             httproot/netconf - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. httproot/netconf

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

httproot/netconf
================

A vendor-agnostic PHP NETCONF implementation

1.0.3(3y ago)037MITPHPPHP &gt;= 5.4.16

Since Sep 19Pushed 3y ago1 watchersCompare

[ Source](https://github.com/httproot/netconf)[ Packagist](https://packagist.org/packages/httproot/netconf)[ RSS](/packages/httproot-netconf/feed)WikiDiscussions main Synced today

READMEChangelog (3)Dependencies (1)Versions (4)Used By (0)

netconf
=======

[](#netconf)

Examples Initializing NETCONF using password authentication and then sending a custom RPC call

```
$netConf = new NetConf(
    "192.168.0.100",
    new NetConfAuthPassword(
        [
            "username" => "lamoni",
            "password" => "phpsux"
        ]
    )
);

echo $netConf->sendRPC(
    "".
        "".
            "".
        "".
    ""
);

```

Editing the configuration of a Junos device and committing the changes

```
$netConf->editConfig(
    "

                fe-0/0/0
                Testing netconf

    ",
    'candidate',
    ['custom-param' => 'custom-value']
);

if ($netConf->commit()->isRPCReplyOK()) {
    echo "Successfully committed, dude!";
}
else {
    echo "Something's wrong, man.";
}

```

Using NETCONF's subtree filters to get certain config

```
$getUsersNames = $netConf->getConfig(
    [
       "configuration/system/login/user" => [
           [
               "name"=>"user"
           ]
       ]
    ]
);

```

###  Health Score

21

—

LowBetter than 18% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity44

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~1 days

Total

3

Last Release

1381d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1a8dc2ffc42597adf3ea37295099160308ca1a219e338a7b63030252edb0b5fd?d=identicon)[httproot](/maintainers/httproot)

---

Top Contributors

[![httproot](https://avatars.githubusercontent.com/u/19143611?v=4)](https://github.com/httproot "httproot (8 commits)")

---

Tags

phpnetconf

### Embed Badge

![Health badge](/badges/httproot-netconf/health.svg)

```
[![Health](https://phpackages.com/badges/httproot-netconf/health.svg)](https://phpackages.com/packages/httproot-netconf)
```

###  Alternatives

[civicrm/civicrm-core

Open source constituent relationship management for non-profits, NGOs and advocacy organizations.

751291.4k42](/packages/civicrm-civicrm-core)[phpseclib/phpseclib2_compat

phpseclib 2.0 polyfill built with phpseclib 3.0

132.1M17](/packages/phpseclib-phpseclib2-compat)[shopware/app-php-sdk

Shopware App SDK for PHP

15109.8k3](/packages/shopware-app-php-sdk)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
